Afficher commentaires plus anciens
添付したデータをインポートし、以下のコードで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)
その時に添付したデータの各行がどの座標を示しているか調べる方法はありますか?
足りない情報などございましたらお知らせください。
Réponse acceptée
Plus de réponses (1)
rei shimizu
le 15 Nov 2019
0 votes
Catégories
En savoir plus sur アニメーション dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
