Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to make mesh or contour by using just x,y,z coordinates data ?

1 vue (au cours des 30 derniers jours)
Do-hwan Kim
Do-hwan Kim le 13 Juil 2017
Clôturé : MATLAB Answer Bot le 20 Août 2021
Hello, teacher
I have a question about graph.
I want to make mesh or contour graph but i can't, because x,y,z is just coordinates.
How should i write code?
Please give your good ideas.

Réponses (1)

Elias Gule
Elias Gule le 13 Juil 2017
[xx,yy,zz] = meshgrid(x,y,z);
contour(xx,yy,zz)

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!