例如
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是妳要用的顏色數量
例如
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是妳要用的顏色數量