Interpolation between 2 data sets acquired at same grids

8 views (last 30 days)
Hi,
I have two data sets, that are sampled at same height (y axis) (see image) and I would like to obtain the data set in between by interpolation. I tried interp1 but it is not working for me. I used to do interplation to obtain points at different height in the same profile, but when I try to interpolate to abtain the data points in between 2 different profiles at the same heights, it is not working. Any help would be appreciated.
  2 Comments
darova
darova on 13 Feb 2021
Did you try to interpolate in X direction (horizontally)?
Please provide your code
maryam al labbad
maryam al labbad on 13 Feb 2021
U_3_I = interp1(Height, profile,newHeight);
I used to use this code to obtain the data point at different height in the profile.
I tried using this,
U_3_I = interp1(profile1, profile2,Height);
but this does not work. Can you explain how to interpolate in X direction?

Sign in to comment.

Accepted Answer

Cris LaPierre
Cris LaPierre on 13 Feb 2021
"when I try to interpolate to abtain the data points in between 2 different profiles at the same heights, it is not working"
If both data sets share the same Y value, then the result of interpolation is just going to be the average of their X values. No need to use interp for this. Just use mean.
  9 Comments
maryam al labbad
maryam al labbad on 14 Feb 2021
Actually, what you mentioned at the begining about averaging is correct. my two data set have the same y value, and thus, interpolation gives the same answer as averaging. I think I have made a mistake somewhere which casued the answer to be different.

Sign in to comment.

More Answers (0)

Categories

Find more on Interpolation in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!