作业帮 > 综合 > 作业

用matlab画等值线图时,怎么使图中等值线标注数值上下对齐?

来源:学生作业帮 编辑:作业帮 分类:综合作业 时间:2024/05/15 16:57:06
用matlab画等值线图时,怎么使图中等值线标注数值上下对齐?
我使用contour函数画等值线图,但是数值分布实在太乱,很不美观,看一眼就让人头晕恶心那种……请教各位大虾如何使相邻线上的数值左右或者上下对齐
没办法,clabel里'labelspacing'属性可以调整标注的疏密,加入参数'manual'可以手动指定标注的位置.
>> help clabel
CLABEL Contour plot elevation labels.
CLABEL(CS,H) adds height labels to the contour plot specified by H.
The labels are rotated and inserted within the contour lines. CS and H
are the contour matrix output and object handle outputs from CONTOUR,
CONTOUR3, or CONTOURF.

CLABEL(CS,H,V) labels just those contour levels given in
vector V. The default action is to label all known contours.
The label positions are selected randomly.

CLABEL(CS,H,'manual') places contour labels at the locations
clicked on with a mouse. Pressing the return key terminates
labeling. Use the space bar to enter contours and the arrow
keys to move the crosshair if no mouse is available.

CLABEL(CS) or CLABEL(CS,V) or CLABEL(CS,'manual') places
contour labels as above, except that the labels are drawn as
plus signs on the contour with a nearby height value.

H = CLABEL(...) returns handles to the TEXT (and possibly LINE)
objects in H. The UserData property of the TEXT objects contain
the height value for each label.

CLABEL(...,'text property',property_value,...) allows arbitrary
TEXT property/value pairs to specified for the label strings.

One special property ('LabelSpacing') is also available to specify
the spacing between labels (in points). This defaults to 144, or
2 inches.

Uses code by R. Pawlowicz to handle inline contour labels.

Example
subplot(1,3,1), [cs,h] = contour(peaks); clabel(cs,h,'labelspacing',72)
subplot(1,3,2), cs = contour(peaks); clabel(cs)
subplot(1,3,3), [cs,h] = contour(peaks);
clabel(cs,h,'fontsize',15,'color','r','rotation',0)

See also contour, contour3, contourf.
Reference page in Help browser
doc clabel