How to transfer surf(x,y,z) to a data contains height value?

3 次查看(过去 30 天)
Greeting everyone!
What i have now is 3 Matrix x,y,z, which can be presented by surf(x,y,z).
But i want to transfer these data to one matrix containing height value, which can be presented by surf(f).
Thanks!
Here is my data:
[x,y,z] = sphere; % Makes a 21-by-21 point sphere
x = x(11:end,:); % Keep top 11 x points
y = y(11:end,:); % Keep top 11 y points
z = z(11:end,:); % Keep top 11 z points
r = 3; % r radius value
x=r*x+r;
y=r*y+r; % Move x, y starting from 0
z=r*z; % Change the radius of the dom to r
% so i generate a dom(half ball) with radius 3
  2 个评论
Walter Roberson
Walter Roberson 2018-1-18
surf(f) is the same as surf(1:size(f,1), 1:size(f,2), f) so the only way to get this to work would be to interpolate or extrapolate values at unit intervals so that the tick labels line up with the data values.
This would not seem to be a useful thing to do. If you have the coordinates of the data points available, then use them.
Yu Zou
Yu Zou 2018-1-19
thanks for advice. I want to extract the height from a dom so that i can execute something else, so it's pretty useful for me.

请先登录,再进行评论。

回答(2 个)

Image Analyst
Image Analyst 2018-1-18
Try interp2() to take your coordinates and make a 2-D matrix where the values are the z values.
  3 个评论
Image Analyst
Image Analyst 2018-1-19
Not sure since I don't have any data to try. You forgot to attach your data. Make it easy for people to help you, not hard, by attaching your data.

请先登录,再进行评论。


Walter Roberson
Walter Roberson 2018-1-19
F = scatteredInterpolant(x(:),y(:),z(:));
[X,Y] = ndgrid(1:floor(max(x(:))));
Z = F(X,Y);
surf(Z)
You will find this rather unsatisfactory, but it is the best that can be done while maintaining the axes labels with a simple surf(Z)

类别

Help CenterFile Exchange 中查找有关 Contour Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by