how can i get the data from 3D graph? xyz
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Walter Roberson
el 13 de Abr. de 2016
It is not going to work very well: your data is too close together and there is too much overlap.
2 comentarios
Asrith Pyla
el 27 de Mzo. de 2020
Mr. Walter Robinson
I have an image stored from Matlab. It is of a 3D plot. I have to extract the z data from this plot.
How to do this ?
Walter Roberson
el 27 de Mzo. de 2020
My response would be the same: you can use any of those contributions from the File Exchange, but you are not likely to get a good result. The hidden surface is going to cause you problems.
Más respuestas (1)
Azzi Abdelmalek
el 13 de Abr. de 2016
%-----Example------------
x=1:100
y=1:100
[X,Y]=meshgrid(x,y)
Z=sin(X).^2+cos(Y).^2
mesh(X,Y,Z)
%-------------------
ch=get(gca,'children')
X=get(ch,'Xdata')
Y=get(ch,'Ydata')
Z=get(ch,'Zdata')
Ver también
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
