how i can connect equal point to gather of 2 separated graph on same figure
조회 수: 4 (최근 30일)
이전 댓글 표시
i want to know how to connect equal data point to gather of 2 separated graph on same figure
답변 (1개)
Image Analyst
2013년 1월 5일
Not sure what "connect" means to you, but how about using the line() function?
댓글 수: 11
Image Analyst
2013년 1월 5일
OK. Like I said, line() should do it. For each x,y coordinate, you call
line([xMesh, xData], [yMesh, yData], [zMesh, zData]);
참고 항목
카테고리
Help Center 및 File Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!