3次元棒グラフでの可視化について
显示 更早的评论
(x1,y1,z1)~(xn,yn,zn)の各3次元要素を、1つのxyz空間内に棒グラフで可視化する方法がありましたら教えて頂けると幸いです。 zk=fk(xk,yk)という形で、zkの値を棒グラフの長さで示したいと考えています。
回答(1 个)
Jiro Doke
2017-12-11
x = randi(10,1,10);
y = randi(10,1,10);
z = randi(10,1,10);
stem3(x,y,z)

类别
在 帮助中心 和 File Exchange 中查找有关 Bar Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!