一、matlablegend颜色
matlablegend是Matlab中一个绘制图例的函数,我们可以使用它给我们的绘图结果添加图例。其中一个重要的参数就是legend的颜色。在matlablegend中可以使用颜色名称、缩写或者RGB、CMYK值对颜色进行设定。下面是一个将图例的颜色等分成五份并添加到plot图中的示例:
figure x = linspace(0,10); y1 = sin(x); y2 = cos(x); y3 = x; y4 = x.^2; y5 = x.^3; plot(x, y1) hold on plot(x, y2) plot(x, y3) plot(x, y4) plot(x, y5) legend('sine', 'cosine', 'linear', 'squared', 'cubed') cm = lines(5); for i=1:5 p = plot(nan,nan,'s'); set(p,'markersize',10,'markeredgecolor',cm(i,:),'markerfacecolor',cm(i,:)); end hold off
在这段代码中,我们使用了Matlab自带的colors函数lines()将五种不同的颜色提取出来,并将这些颜色等分分别添加到plot图中实现颜色的区分。
二、matlab legend大小
设置matlab legend的大小需要使用到函数set(),在set()函数中可以设置legend的fontsize、fontweight、fontname等参数。下面是一个将字体大小设置成14,并且字体类型设置为Times New Roman的代码示例:
figure x = linspace(0,10); y1 = sin(x); y2 = cos(x); y3 = x; y4 = x.^2; y5 = x.^3; plot(x, y1) hold on plot(x, y2) plot(x, y3) plot(x, y4) plot(x, y5) legend('sine', 'cosine', 'linear', 'squared', 'cubed') set(gca,'FontSize',14,'FontName','Times New Roman') hold off
在这段代码中,我们使用了set()函数将整个图的字体大小和字体类型进行了统一设置。
三、matlablegend函数用法
matlablegend函数是Matlab中用来添加图例的函数。它可以将多个subplots的图例合并成一个,也可以将单个subplot的图例添加上。除了提供图例名称外,还可以设置它们的坐标位置、符号大小等。下面是一个简单的示例:
x=linspace(0,pi); y1=sin(x); y2=cos(x); y3=sin(x).*cos(x); figure; subplot(2,2,1); plot(x,y1); title('Sine'); subplot(2,2,2); plot(x,y2); title('Cosine'); subplot(2,2,3); plot(x,y3); title('Sine times cosine'); titleHandle = title('Subplot1'); % Capture the handle of the subplot hLegend = legend('Sine','Cosine','Sine times cosine'); set(hLegend,'FontSize',8,'Location','SouthEast') set(titleHandle,'FontSize',8);
在这段代码中,我们将三个subplot的图例添加到一个legend中,并且将legend放到了subplot的右下角。其中,Location参数用来设定legend的位置,可以选择为NorthEast、SouthWest、SouthEast等等。
四、matlablegend大小调整
使用matlablegend函数添加图例后,我们可以使用legend中的子函数set()来设置图例的各项参数。可以通过set函数来修改legend中的属性,如font size、position、alignment等等。下面是一个在legend中增加一个标题,并且调整边框的大小的实例:
set(hlegend,'Fontsize',10,'Box','on','LineWidth',2) % Set legend position, fontsize, and box properties htitle = get(hlegend,'Title'); % Get title's handle set(htitle,'String','My Legend','Fontsize',11); % Set title of legend
在这段代码中,我们调整了legend的字体大小、位置和边框大小,并且给legend添加了一个标题。
五、matlab legend函数功能
matlablegend函数的功能非常强大,它可以为每个subplot添加不同的图例样式,还可以在legend中增加很多自定义属性,如图例形状、线型、线宽等等。下面是一个将多个subplot的图例添加到一个legend中,并且设置每个subplot的图例样式的示例:
x=linspace(0,pi); y1=sin(x); y2=cos(x); y3=sin(x).*cos(x); x4=linspace(0,pi*2); y4=cos(x4); x5=linspace(-pi/2,pi/2); y5=tan(x5); figure; subplot(2,3,1); plot(x,y1); title('Sine'); subplot(2,3,2); plot(x,y2); title('Cosine'); subplot(2,3,3); plot(x,y3); title('Sine times cosine'); subplot(2,3,4); plot(x4,y4); title('Double frequency cosine'); subplot(2,3,5); plot(x5,y5); title('Tangent'); legendHandle = legend({'sine'; 'cosine'; 'sine times cosine'; 'double frequency cosine'; 'tangent'}); set(legendHandle,'Orientation','vertical', 'Location','North','Position',[0.39,0.4,0.2,0.2]); set(findobj(legendHandle,'type','line','linestyle','-'),'color','green','linewidth',2) set(findobj(legendHandle,'type','line','color',[0 0 1]),'linestyle','-')
在这段代码中,我们将多个subplot的图例添加到了一个legend中,并且为不同的图例添加了不同的线型、颜色等自定义属性。
六、matlab的legend用法
matlablegend函数是Matlab中最常用的函数之一。它可以让我们很简单地将图例添加到我们的绘图结果中。除了函数本身的功能外,我们还可以通过其他设置来对legend进行修改。下面是一个在legend中增加加粗效果以及背景色的代码示例:
figure; x=linspace(0,2*pi); plot(x,sin(x),'-r',x,cos(x),'-g'); lh = legend('sin','cos'); set(lh,'color',[.9 .9 .9],'EdgeColor',[.7 .7 .7],'FontSize',18,'FontWeight','bold')
在这段代码中,我们为legend增加了加粗的效果以及背景色,使其更加美观。
七、matlab legend位置
在Matlab中,我们使用legend函数来添加图例,位置参数用来设置legend的位置。这个位置参数可以更直观的通过图形化的交互操作来进行选择。下面是一种通过交互窗口选择legend位置的代码示例:
figure x = linspace(0,10); y1 = sin(x); y2 = cos(x); y3 = x; y4 = x.^2; y5 = x.^3; plot(x, y1) hold on plot(x, y2) plot(x, y3) plot(x, y4) plot(x, y5) legend('sine', 'cosine', 'linear', 'squared', 'cubed') set(gca,'FontSize',14,'FontName','Times New Roman') [hleg, hobj, hout, mout] = ... legend('show'); hleg.Location = 'southwest'; hold off
在这段代码中,我们使用legend('show')的方式来唤起图形化的交互操作,方便选择legend的位置。
八、matlab绘图legend用法
Matlab中,legend函数是用来将图例添加到绘图结果中的。它可以仅添加到指定的个别对象中,也可以添加到整个图像中。下面是一个用来将图例添加到subplot中的代码示例:
x=linspace(0,pi); y1=sin(x); y2=cos(x); figure; subplot(2,2,1); plot(x,y1); title('Sine'); subplot(2,2,2); plot(x,y2); title('Cosine'); subplot(2,2,[3, 4]); plot(x,y1,'--r',x,y2,'--b'); lh = legend('sin','cos'); set(lh,'Location','NorthWest','FontSize',14);
在这段代码中,我们使用三个subplot来绘制不同的曲线,并且将两个曲线的legend添加到第三个subplot中。其中,Location参数用来指定legend的位置,可以选择为NorthEast、SouthWest等等。