Clear Filters
Clear Filters

Interpolate both x and y values in Matrix to find one point

6 views (last 30 days)
I currenlty have the following table. Each angle (from -5 to 20 degree) has one value for Reynolds Number 10,000 and so on. I.e. at Re=10,000 and -5 degree I have a value of -0.0387 etc.
I want to determine a value that is located at Reynods Number = 11,000 and angle 18 degree.
How can I obtain that value? I would have to interpolate for both rows and colums but not sure how to go about it the best. In Matlab, I only have the values saved. The matrix does not have 10,000-160,000 or the different angles. I added a note to my script that said coloum one corresponds to -5 at varying Reynolds number etc.

Accepted Answer

Bruno Luong
Bruno Luong on 1 Sep 2022
assuming the data has first dimension correspond to the Reynoid and secind dimension to yhe angle
theta = [-5:2:11 20];
R = 10000:10000:160000;
% data = rand(length(R),length(theta))
datainterp = interp2(theta,R,data,18,11000)

More Answers (0)

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!