3次元棒グラフでの可視化について

6 visualizaciones (últimos 30 días)
Yasumitsu Araki
Yasumitsu Araki el 11 de Dic. de 2017
Respondida: Jiro Doke el 11 de Dic. de 2017
(x1,y1,z1)~(xn,yn,zn)の各3次元要素を、1つのxyz空間内に棒グラフで可視化する方法がありましたら教えて頂けると幸いです。 zk=fk(xk,yk)という形で、zkの値を棒グラフの長さで示したいと考えています。

Respuestas (1)

Jiro Doke
Jiro Doke el 11 de Dic. de 2017
棒グラフではありませんが、 stem3 で似たようなグラフが作成できます。
x = randi(10,1,10);
y = randi(10,1,10);
z = randi(10,1,10);
stem3(x,y,z)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!