How to plot multiple lines in predefined colors ?

52 次查看(过去 30 天)
How to plot multiple lines with different predefined colors
CM = jet(2);
x= linspace(1,10,10);
y1 = x.^2; y2 =x.^3;
plot(x,y1,CM(1,:),x, y2, CM(2:)) %what is the correct entry here for the color CM(1,:)

回答(1 个)

Arthur Roué
Arthur Roué 2020-8-6
CM = jet(2);
x = linspace(1,10,10);
y1 = x.^2; y2 =x.^3;
plot(x, y1, 'Color', CM(1,:)); hold on
plot(x, y2, 'Color', CM(2,:));

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by