How to plot two plots in one graph?

How can I plot "Chaotic_Balance(0.02, 9, 18, 1)" and "Chaotic_Balance(0.02, 10, 18, 1)" in one graph and label them like the picture shows below (red and blue line with descriptions)?

3 Comments

Use hold on after plot.
Pass Rd as vector
I used it in a new script, but it seemed not work as well. Why is it?
hi
it would be more efficient maybe if you could share the code (and the data if needed)

Sign in to comment.

Answers (1)

Adam Danz
Adam Danz on 2 Feb 2021
Edited: Adam Danz on 3 Feb 2021
Place it just before the i-loop
figure()
hold on
for i = 1:Year
...
end
hold off % optional

Categories

Asked:

on 2 Feb 2021

Edited:

on 3 Feb 2021

Community Treasure Hunt

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

Start Hunting!