3次元点プロットをx,yの2次元平面とカラーマップで表現したい
Afficher commentaires plus anciens
x=repmat(1:5,1,5);
y=(1:5)'.*ones(1,5);
y=reshape(y',1,size(x,2));
z=randi([1 10],1,size(x,2));
plot3(x,y,z,'.')
上図のような3Dプロットを
x,y平面にして,zの値をメッシュ状のカラーマップを用いてた2次元表記にしたいのですが,可能でしょうか.
Réponse acceptée
Plus de réponses (0)
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!
