3次元点プロットをx,yの2次元平面とカラーマップで表現したい
15 views (last 30 days)
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次元表記にしたいのですが,可能でしょうか.
0 Comments
Accepted Answer
More Answers (0)
See Also
Categories
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!