필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

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

조회 수: 2 (최근 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!