Color plotting of a plot

5 views (last 30 days)
Luffy
Luffy on 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

Accepted Answer

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

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!