How to label the levels of a fcontour plot?

조회 수: 39 (최근 30일)
TS
TS 2017년 4월 14일
댓글: Star Strider 2017년 4월 15일
How to label the levels of a fcontour plot? fcontour does not work with clabel nor has a option such as 'ShowText','on' in contour.

채택된 답변

Star Strider
Star Strider 2017년 4월 14일
You must use the contour function to get the contour labels.
Combining fcontour and contour to get the result you want (in figure(2) here) is not difficult. You first need to get the data fcontour creates. You can do that by returning the handle to it, and then accessing its properties.
Using an example from the documentation for fcontour and adapting it to use contour:
syms f(x,y)
f(x,y) = sin(x) + cos(y);
figure(1)
hfc = fcontour(f);
figure(2)
contour(hfc.XData, hfc.YData, hfc.ZData, 'ShowText','on')
Although this takes one more line of code, it will give you the result you want.
  댓글 수: 2
TS
TS 2017년 4월 15일
Thanks for this work arround. Im going to use this for now, but is there no more "elegant" way considering fcontour is pretty much the same function as contour (yet for symbolic). Espacially considering that im opening a dummy figure only to generate the data and dont use it (figure 1). It seems very odd to me that fcontour doenst have "showtext" itself.
Star Strider
Star Strider 2017년 4월 15일
My pleasure.
The two functions have some significant differences. The outputs from fcontour are matrices, while the outputs from contour are the the vectors of (x,y) coordinates for each contour.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Contour Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by