I am working on Paleomagnetism and Beryllium 10 / Beryllium 9. I have PISO-1500,paleomagnetic intensity stack and beryllium ratios. I wrote the programme
-----------------------------------------------------------------------------------------------------------
Code: Select all
%==========================================================================
% SED.CORE 9 INDIAN OCEAN MD90 - 0961
%==========================================================================
clc
clear
x1 = load ('a.txt'); % age of PISO-1500
y1 = load ('b.txt'); % value of PISO-1500
x2 = load ('1.txt'); % age of 10Be / 9Be
y2 = load ('2.txt'); % value of 10Be / 9Be
z = 1./y1; %taking inverse of PISO-15)
[ax,h1,h2] = plotyy (x1,z,x2,y2);
axes(ax(1)); xlabel('AGE( ka )'); ylabel('1 / PISO - 1500');
axes(ax(2)); xlabel('AGE( ka )'); ylabel('^1^0 Be / ^9 Be');
grid on
There is a shift in peaks of Paleomagnetism and the Beryllium ratios.
THE ONLY CORRECTION I CAN DO IS IN THE AGE DETAILS OF BERYLLIUM RATIOS.
I have to shift the peaks of Beryllium ratios such that they may come at the peaks PISO.
Please suggest me the command to use in CRP toolbox and the code.
I am basically a Geology student and have no background in coding.
Thank you