Hi everyone, i want to plot these graphs wtih different colors as at the moment all of them are black. This plot command is inside the loop, each time it plots one curve on the figure window. So i want each time it plots the graph with different color. Thank you so much.
plot(ITstore,bptime,'-k','LineWidth',2);

 Réponse acceptée

Image Analyst
Image Analyst le 10 Oct 2014

0 votes

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 10 Oct 2014

0 votes

Don't specify the color k
plot(ITstore,bptime,'-','LineWidth',2)

2 commentaires

Aftab Ahmed Khan
Aftab Ahmed Khan le 10 Oct 2014
Hi, if i don't specify the color, then i am getting all of them in blue color. as shown below
Look at this example
x=linspace(0,10,100);
y=[sin(x)' cos(x)']
plot(x,y,'-')

Connectez-vous pour commenter.

Catégories

En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by