필터 지우기
필터 지우기

Getting the value of a graph at a certain point

조회 수: 3 (최근 30일)
Christina
Christina 2012년 10월 8일
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?

답변 (2개)

Julien
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

Matt J
Matt J 2012년 10월 8일
편집: Matt J 2012년 10월 8일
If you performed a curve fit, then it should have given you a continuous-space formula z=f(x,y) for the surface. Just evaluate the formula at the point(s) you're interested in. Wasn't that the whole point of doing the curve fit in the first place?

카테고리

Help CenterFile Exchange에서 Surfaces and Volumes에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by