![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/263823/image.png)
How to get coordinates for a specific contour line?
조회 수: 23 (최근 30일)
이전 댓글 표시
I have the program as follows:
x = -2:0.2:2;
y = -2:0.2:3;
[X,Y] = meshgrid(x,y);
Z = X.*exp(-X.^2-Y.^2);
contour(X,Y,Z)
Now, I want to get a two-column matrix C that will give the (x,y) coordinates of a specific contour line, let us say for Z = 0.1. So, how to get this two-column matrix?
댓글 수: 0
채택된 답변
Claudio Iturra
2020년 1월 20일
편집: Image Analyst
2020년 1월 21일
x = -2:0.2:2;
y = -2:0.2:3;
[X,Y] = meshgrid(x,y);
hold on % to your meshgrid a specific value for your contour.
[x1,y1] = contour(X,Y,Z,[0.1 0.1],'*k') % x1 will be your "two-column matrix"
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/263823/image.png)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Contour Plots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!