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

1 Ansicht (letzte 30 Tage)
Yu Zou
Yu Zou am 18 Jan. 2018
Beantwortet: Walter Roberson am 19 Jan. 2018
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 Kommentare
Walter Roberson
Walter Roberson am 18 Jan. 2018
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 am 19 Jan. 2018
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.

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Image Analyst
Image Analyst am 18 Jan. 2018
Try interp2() to take your coordinates and make a 2-D matrix where the values are the z values.
  3 Kommentare
Image Analyst
Image Analyst am 19 Jan. 2018
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.
Yu Zou
Yu Zou am 19 Jan. 2018
Thanks for advice, i've attached my code

Melden Sie sich an, um zu kommentieren.


Walter Roberson
Walter Roberson am 19 Jan. 2018
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)

Community Treasure Hunt

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

Start Hunting!

Translated by