【MATLAB】画图使用调色板实现自动线条颜色的方法

n=10; %n types of colors in hsv;

cc=hsv(n);

figure;

hold on;

for i=1:12

plot(result(1,:), ‘color’, cc(mod(i,n)+1, :)); %mod(i,n) is to prevent color from exceeding hsv dimensions, +1 because hsv(0) has no definition;

end

原创文章,作者:3628473679,如若转载,请注明出处:https://blog.ytso.com/192525.html

(0)
上一篇 2021年11月15日
下一篇 2021年11月15日

相关推荐

发表回复

登录后才能评论