5
異なる色の線を自動的にプロットする
同じグラフ上にいくつかのカーネル密度推定をプロットしようとしていますが、それらをすべて異なる色にしたいと考えています。文字列'rgbcmyk'を使用して、個別のプロットごとにそれをステップスルーする束縛されたソリューションがありますが、7回の反復後に重複が始まります。これを行うためのより簡単で効率的な方法はありますか? for n=1:10 source(n).data=normrnd(rand()*100,abs(rand()*50),100,1); %generate random data end cstring='rgbcmyk'; % color string figure hold on for n=1:length(source) [f,x]=ksdensity(source(n).data); % calculate the distribution plot(x,f,cstring(mod(n,7)+1)) % plot with a different color each time end
112
matlab
plot
matlab-figure