三次元グラフ上において、特定の1つだけをプロットしたい
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Y.T
el 5 de Dic. de 2021
Comentada: Y.T
el 6 de Dic. de 2021
三次元グラフ上において、特定の1つの点だけをプロットしたいと考えています。
そのような場合、どのようにプログラムを作成したらよいのでしょうか。
また、for文を用いて、1つずつプロットをしていくことを繰り返し、
プロットされた順番が分かるように矢印で結んでいくことは可能でしょうか。
0 comentarios
Respuesta aceptada
Atsushi Ueno
el 5 de Dic. de 2021
>三次元グラフ上において、特定の1つの点だけをプロットしたい
x = 0; y = 0; z = 0;
plot3(x, y, z, '-o');
>for文を用いて、1つずつプロットをしていくことを繰り返し、プロットされた順番が分かるように矢印で結んでいく
old = 0;
for cor = 1:1:3
vectarrow([old old old],[cor cor cor]);
hold on;
old = cor;
end
Más respuestas (0)
Ver también
Categorías
Más información sobre 領域とイメージのプロパティ 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!