How to plot 2 different colour using RBG setting
1 view (last 30 days)
Show older comments
plot(x,y,'color',[0,0.5,0], x,y2, 'color',[0.5,0,0])
It said
Error using plot
Vectors must be the same length.
If I am using:
plot(x,y,'color',[0,0.5,0]),
it works.
0 Comments
Answers (1)
Image Analyst
on 3 Jan 2020
Your y2 does not have the same number of elements as x. It has nothing to do with the colour.
See Also
Categories
Find more on Blue in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!