Info

この質問は閉じられています。 編集または回答するには再度開いてください。

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

1 回表示 (過去 30 日間)
Do-hwan Kim
Do-hwan Kim 2017 年 7 月 13 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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.

回答 (1 件)

Elias Gule
Elias Gule 2017 年 7 月 13 日
[xx,yy,zz] = meshgrid(x,y,z);
contour(xx,yy,zz)

Community Treasure Hunt

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

Start Hunting!