3D graphs with 3 variables function as Z

3 vues (au cours des 30 derniers jours)
Mustafa
Mustafa le 3 Déc 2011
Hello to all could someone please tell me how to plot a 3d graph with x and y as distances and z as function that depends on 3 variabls ?! example: ???(x2,y2,q(n,ja,ka)) = (x,y,z) Regards

Réponses (1)

Naz
Naz le 3 Déc 2011
x=[1:10];
y=[1:10];
z=rand(1,10);
plot3(x,y,z)
  2 commentaires
Mustafa
Mustafa le 3 Déc 2011
it still doesn't accept z with more than 2 dimensions
Naz
Naz le 4 Déc 2011
I see. If your matrix z has size of XbyY, you can plot it as surf(x,y,z)

Connectez-vous pour commenter.

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by