how to linearly interpolate 2D matrix at a point (x,y)
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
X: x-coordinate values, Y: y-coordinate values. These correspond to Values as the 2D table. interpolate the value at (2.5,3.5) but my code doesn't work. receive error of wrong input arguments
interpolatedvalue = interp2(X,Y,Values,2.5,3.5);
1 Kommentar
Akira Agata
am 26 Mär. 2018
X, Y and Values should be full grid matrix or grid vector. Please check these variables in your code and the following documentation page.
Siehe auch
Kategorien
Mehr zu Interpolation finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!