Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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

1 Ansicht (letzte 30 Tage)
Do-hwan Kim
Do-hwan Kim am 13 Jul. 2017
Geschlossen: MATLAB Answer Bot am 20 Aug. 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.

Antworten (1)

Elias Gule
Elias Gule am 13 Jul. 2017
[xx,yy,zz] = meshgrid(x,y,z);
contour(xx,yy,zz)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!