Color plotting of a plot

1 Ansicht (letzte 30 Tage)
Luffy
Luffy am 3 Jul. 2012
Hi everyone,
I can plot curve with a color of my wish(red) as
plot(sind(1:360),'red');
and this works
If i want to do it through a variable like,
a = char(red);
this does not work,
plot(sind(1:360),'',a,'');
Please help

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 3 Jul. 2012
a = 'red';
plot(sind(1:360),a);

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by