Effacer les filtres
Effacer les filtres

how to plot x,y,z axes in a single graph?

23 vues (au cours des 30 derniers jours)
Sivakumaran Chandrasekaran
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

Réponses (2)

Walter Roberson
Walter Roberson le 19 Oct 2012
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 le 19 Oct 2012
You can use stem3(x,y,z,'MarkerFaceColor','g').
Refer link below:
Hope it helps!!!

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by