![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/179969/image.png)
3次元棒グラフでの可視化について
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
(x1,y1,z1)~(xn,yn,zn)の各3次元要素を、1つのxyz空間内に棒グラフで可視化する方法がありましたら教えて頂けると幸いです。 zk=fk(xk,yk)という形で、zkの値を棒グラフの長さで示したいと考えています。
0 comentarios
Respuestas (1)
Jiro Doke
el 11 de Dic. de 2017
x = randi(10,1,10);
y = randi(10,1,10);
z = randi(10,1,10);
stem3(x,y,z)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/179969/image.png)
0 comentarios
Ver también
Categorías
Más información sobre Bar Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!