Interpolate y-values of two data sets on the same axes

12 Ansichten (letzte 30 Tage)
Olivia Booth-Howe
Olivia Booth-Howe am 12 Jun. 2019
Kommentiert: Matt J am 12 Jun. 2019
Hello,
I am writing a script in which I plot two sets of data on the same axes.
The first set contains data taken with one instrument, and the second contains data from another instrument. The y-axis is "height" and the x-axis is "temperature."
I am plotting the data from 0 to 4000 meters, but since the samples were taken from different instruments, data points do not occur at the exact same heights. Therefore, I am attempting to interpolate the y-variables of each of the two data sets onto the same grid. I do not want to interpolate the x-variables.
I cannot figure out how to properly use the interp function in order to achieve this.
Can anyone help? Please let me know if attaching my code will assist in understanding my question.
Thank you very much!

Akzeptierte Antwort

Matt J
Matt J am 12 Jun. 2019
Bearbeitet: Matt J am 12 Jun. 2019
ht1=sortrows([height1(:),temperature1(:)]); %pre-sort
ht2=sortrows([height2(:),temperature2(:)]);
Height=ht1(:,1);
Temperature1=ht1(:,2);
Temperature2=interp1(ht2(:,1),ht2(:,2),Height);
plot(Temperature1,Height,'o',Temperature2,Height,'x')
  2 Kommentare
Olivia Booth-Howe
Olivia Booth-Howe am 12 Jun. 2019
Got it to work, thanks so much!
Matt J
Matt J am 12 Jun. 2019
You're welcome. Please Accept-click the answer, if it resolved your problem.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by