r****y 发帖数: 1437 | 1
Just same as line plots, xlabel( ), ylabel( )
If you do not want the contour values showing up, just wanna
legend, just
h = contour( *** )
b = clabel(h, 'manual');
and change "string" properties of b
Or even simpler,
gtext( your_legend)
click to whereever you wanna put
[c, h] = contour( ***);
get(h(i))
you will see the properties of line, then change it, e.g.
for i = 1:length(h)
set(h(i), 'L |
|