标签: matlab coordinates
我用以下方式创造了一个革命的表面:
r1=[-5:1:5]; r2=[1 2 3 4 5 6 5 4 3 2 1]; n=length(r2); [rho,theta] = meshgrid(r1,linspace(0,2*pi,n)); X = rho.*cos(theta); Y = rho.*sin(theta); Z = repmat((r2/max(r2)),n,1); surf(X,Y,Z)
我希望以“数据光标”显示的方式获取曲面所有点的坐标。有可能这样做吗? 提前致谢!