2 Scenario Legend Setup

2 views (last 30 days)
Jake Elliott
Jake Elliott on 18 Oct 2020
Answered: Star Strider on 18 Oct 2020
I wish to make a legend plot that separates 2 experiments by color while sepparating the inputs by line style, inputs for both experiments were the same. What is the best way to go about making a legend like this?

Answers (2)

madhan ravi
madhan ravi on 18 Oct 2020
plot(1:5, '-k')
hold on
plot(6:10, ':y')
legend({'Leg 1', 'Leg2'}) %?

Star Strider
Star Strider on 18 Oct 2020
See the Line Properties documentation on DisplayName.
That might do what you want.

Tags

Community Treasure Hunt

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

Start Hunting!