how to plot x,y,z axes in a single graph?
古いコメントを表示
I need to plot 3 variables namely x,y,z. I need to plot all the 3 variable in a single figure window. how to do it
回答 (2 件)
Walter Roberson
2012 年 10 月 19 日
plot3(x,y,z)
or
scatter3(x,y,z)
or
surf(x,y,z)
or
plot([x(:), y(:), z(:)])
depending on what kind of graph is desired.
Sachin Ganjare
2012 年 10 月 19 日
0 投票
You can use stem3(x,y,z,'MarkerFaceColor','g').
Refer link below:
Hope it helps!!!
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!