Clear Filters
Clear Filters

How To... Plot Multiple Data Sets on the Same plot

1 view (last 30 days)

Answers (1)

Jan
Jan on 16 Sep 2017
Or:
plot(1:10, rand(1, 10), 'r-+');
hold('on');
plot(1:10, rand(1, 10), 'g-d');
plot(1:10, rand(1, 10), 'b-*');

Categories

Find more on Graphics Objects 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!