how can i get the data from 3D graph? xyz
10 views (last 30 days)
Show older comments
Accepted Answer
Walter Roberson
on 13 Apr 2016
It is not going to work very well: your data is too close together and there is too much overlap.
2 Comments
Asrith Pyla
on 27 Mar 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
on 27 Mar 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.
More Answers (1)
Azzi Abdelmalek
on 13 Apr 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')
See Also
Categories
Find more on Creating, Deleting, and Querying Graphics Objects in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!