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
Walter Roberson 2012 年 10 月 19 日

3 投票

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
Sachin Ganjare 2012 年 10 月 19 日

0 投票

You can use stem3(x,y,z,'MarkerFaceColor','g').
Refer link below:
Hope it helps!!!

カテゴリ

ヘルプ センター および File Exchange2-D and 3-D Plots についてさらに検索

製品

タグ

質問済み:

2012 年 10 月 19 日

Community Treasure Hunt

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

Start Hunting!

Translated by