Clear Filters
Clear Filters

Interpolating the y values of a dataset A to correspond to the x values of dataset B.

1 view (last 30 days)
Hi,
I have 2 datasets containing the numerical (x1,y1) and experimental (x2,y2) results of a problem that lie within the same limits. I have to obtain the root-mean-square error to show the deviation of the numerical results from the experimental data, but the numerical data points (y1) are recorded on different locations (x1) from those of the experimental data points (x2) due to which the error calculation is not possible.
I'd like to know if there is a precise method to interpolate the y1 values for the locations prescribed in x2.

Accepted Answer

Torsten
Torsten on 6 Jun 2024
Edited: Torsten on 6 Jun 2024
The easiest way I can think of is
y1_at_x2 = interp1(x1,y1,x2)
If it's precise ? Define precise. At least you have the choice between different methods of interpolation. Read the documentation of "interp1" for more details.
If the (x1,y1) were obtained by a numerical method, you usually have the choice to define the output points x. Why didn't you choose x2 instead of x1 ?
  4 Comments
Shadab
Shadab on 6 Jun 2024
Edited: Shadab on 6 Jun 2024
I have clarified the issue in response to the previous comment. I realize "precise" wasn't the right term to use for what I wanted to ask, for which I apologize. I wanted to ask if such interpolation could be achieved consicely or would it be possible using a series of commands.
Torsten
Torsten on 6 Jun 2024
You need one command
y1_at_x2 = interp1(x1,y1,x2,method)
in which you should test for different interpolation methods available.

Sign in to comment.

More Answers (0)

Categories

Find more on Interpolation in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!