指南中的颜色Matlab

时间:2018-05-04 16:27:46

标签: matlab matlab-figure matlab-guide

我已经通过GUIDE Matlab完成了一项任务,该应用程序的想法是将一些数字作为一个函数,然后它将绘制它。

我遇到了问题。当它描绘颜色是黑暗时,它们应该是明亮的。有没有人有任何想法让它更明亮? 我定义了这样的颜色:

color=[1,0,0;0,1,0;0,0,1;1,0,1;0,1,1;1,1,0;.3,.6,.8;.8,.6,.3;.3,.5,.4];
title_str=get_title(degree);
for i=1:degree
   index=find(Xr(:,3)==i);
   scatter(Xr(index,1),Xr(index,2),15,...
   repmat(color(i,:),size(index,1),1).*repmat(conv_rate(index),1,3),'filled') ;
   legend_val{i}=strcat(num2str(i),'th Region');
end

scatter(Xr(Xr(:,3)==0,1),Xr(Xr(:,3)==0,2),'k','filled') ;
legend_val{degree+1}='Diverge points';
legend(legend_val)
title(strcat('Basin of attraction:',title_str))

这就是我得到的:

enter image description here https://imgur.com/Cf4OEPH

0 个答案:

没有答案