Please how to give different color for each plot for this case

1 回表示 (過去 30 日間)
Abdelkader Hd
Abdelkader Hd 2022 年 8 月 9 日
コメント済み: Dyuman Joshi 2022 年 8 月 11 日
x = [-2:0.1:2];
a = [.5, 1, 1.3, 1.95];
figure;
for i=1:length(a)
z = x.*(a(i)-x.^2);
plot(x,z);hold on;
end

回答 (1 件)

Dyuman Joshi
Dyuman Joshi 2022 年 8 月 9 日
One way is to use rand. Colors here will be choosen randomly
x = [-2:0.1:2];
a = [.5, 1, 1.3, 1.95];
figure;
for i=1:length(a)
z = x.*(a(i)-x.^2);
plot(x,z,'Color', rand(1,3))
hold on;
end
Another way is to use binary vectors -
%this works here as we only 4 graphs to plot
%there are only 8 binary triplets available
x = [-2:0.1:2];
a = [.5, 1, 1.3, 1.95];
figure;
for i=1:length(a)
z = x.*(a(i)-x.^2);
plot(x,z,'Color', dec2bin(i,3)-'0')
hold on;
end
  4 件のコメント
Abdelkader Hd
Abdelkader Hd 2022 年 8 月 10 日
Dear @Dyuman Joshi please if you have idea, I want the command to choose the color of the line and also the type of line (dashed line, dashed ...) and line width.
Thank you
Dyuman Joshi
Dyuman Joshi 2022 年 8 月 11 日
Check out this link

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

タグ

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by