Getting the value of a graph at a certain point
3 次查看(过去 30 天)
显示 更早的评论
I had (x,y,z) data and got a surface from these values by curve fitting. Now I want to get the z-value at a point (x,y), which was not in the data set, with which I created the graph. Is that possible and how can I do this?
0 个评论
回答(2 个)
Julien
2012-10-8
you have to make a 2D interpolation
interp2(X,Y,Z,xi,yi)
with X,Y,Z : values from your datas (xi,yi) the coordinates of the point you want to find
look inside documentation for additional information
0 个评论
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!