Hi I have a contour plot with two sets of contour lines and the label of the value on each of the contour lines. does anyone know how to edit these labels as I want to add the unit of each value? For some reason when I manually edit the plot I can only do this for one set of contours not the second set.
thank you

답변 (1개)

dpb
dpb 2013년 9월 29일

0 개 추천

Use the return value functional form
[C, H] = contour(...) returns contour matrix C as described in
CONTOURC and a handle H to a contourgroup object. This handle can
be used as input to CLABEL.

댓글 수: 3

thanks so that means
A = contour(cost)
h = ['test1','test2','test3']
clabel(A,h,'FontSize',15,'LabelSpacing',3000)
?
dpb
dpb 2013년 9월 29일
No, the handle referred to is the optional second return value H which you didn't return...you returned the contour matrix C in A
Andrew Alkiviades
Andrew Alkiviades 2013년 9월 29일
thanks im not sure i follow (im new to this!) didnt I return the text strings in "h" with: clabel(A,h...)? if not how do i do that?

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

카테고리

도움말 센터File Exchange에서 Contour Plots에 대해 자세히 알아보기

질문:

2013년 9월 29일

댓글:

2013년 9월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by