Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

2 visualizaciones (últimos 30 días)
Do-hwan Kim
Do-hwan Kim el 13 de Jul. de 2017
Cerrada: MATLAB Answer Bot el 20 de Ag. de 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.

Respuestas (1)

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

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!