Colour options in plotting graphs

2 vues (au cours des 30 derniers jours)
dandan din
dandan din le 3 Juil 2018
Réponse apportée : KSSV le 3 Juil 2018
I have two for-loops and i need to change the colour of the plot in every iteration of the outer for loop and the same colour for the inner for-loop. The code is as follows;
for t=0:0.01:1.5
f=@(time,y)[y(2);eqn];
for y20=0:0.1:1.5
hold on
[ts,ys] = ode45(f,[0,10],[y20;0]);
plot(ys(:,1),ys(:,2),'color',rand(1,3))
end
hold off
end

Réponses (1)

KSSV
KSSV le 3 Juil 2018
figure
hold on
for i = 1:3
plot(rand(10,1),'r')
for j = 1:2
plot(rand(1,10),'color',rand(1,3))
end
end

Catégories

En savoir plus sur Graphics Performance dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by