3Dグラフについて
显示 更早的评论
添付したデータをインポートし、以下のコードで3Dグラフを作図しました。
x = A(:,1);
y = A(:,2);
z = A(:,3);
xlin=linspace(min(x),max(x),76);
ylin=linspace(min(y),max(y),76);
[X,Y]=meshgrid(xlin,ylin);
Z=griddata(x,y,z,X,Y,'v4');
surf(X,Y,Z)
その時に添付したデータの各行がどの座標を示しているか調べる方法はありますか?
足りない情報などございましたらお知らせください。
采纳的回答
更多回答(1 个)
类别
在 帮助中心 和 File Exchange 中查找有关 アニメーション 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
