天天看点

matlab多排图例,在Matlab中绘制多行的图例

作为构建图例的替代方法,您还可以设置线条的DisplayName属性,以便图例自动更正.

因此,您可以执行以下操作:

N_FILES = 13;

N_FRAMES = 2999;

a = 1.20; b = 0.05;

% # create colormap (look for distinguishable_colors on the File Exchange)

% # as an alternative to jet

cmap = jet(N_FILES);

x = linspace(1,N_FRAMES,N_FRAMES);

figure(1)

hold on % # make sure new plots aren't overwriting old ones

for i = 1:N_FILES

eta = a + (i-1)*b ;

fname = sprintf('phi_per_timestep_eta=%3.2f.txt', eta);

y = load(fname);

%# plot the line, choosing the right color and setting the displayName

plot(x,y,'Color',cmap(i,:),'DisplayName',sprintf('%3.2f',eta));

end

% # turn on the legend. It automatically has the right names for the curves

legend