3次元点プロットをx,yの2次元平面とカラーマップで表現したい
Show older comments
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次元表記にしたいのですが,可能でしょうか.
Accepted Answer
More Answers (0)
Categories
Find more on 表面プロットとメッシュ プロット 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!
