古詩詞大全網 - 成語經典 - matlab怎麽循環plot自定義顏色?

matlab怎麽循環plot自定義顏色?

首先定義壹個顏色rgb的三元矩陣,n行3列

例如

c=[ 1 1 1;

1 1 0;

1 0 1;

........];

for i=1:n %n是妳畫曲線的數量

plot(x,y,'color',c(i,:));hold on %化曲線,每次循環根換數據和顏色

end

hold off

對於c,妳可以用系統定義好的colormap

例如

c=colormap(jet(n)); %n是妳要用的顏色數量