天天看點

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