3次元棒グラフでの可視化について
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
(x1,y1,z1)~(xn,yn,zn)の各3次元要素を、1つのxyz空間内に棒グラフで可視化する方法がありましたら教えて頂けると幸いです。 zk=fk(xk,yk)という形で、zkの値を棒グラフの長さで示したいと考えています。
0 Kommentare
Antworten (1)
Jiro Doke
am 11 Dez. 2017
x = randi(10,1,10);
y = randi(10,1,10);
z = randi(10,1,10);
stem3(x,y,z)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Bar Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!