How to set legend for a line segment?

2 views (last 30 days)
Mr M.
Mr M. on 5 Nov 2015
Edited: Thorsten on 10 Nov 2015
How to add legend to this?: line([x1 x2],[y1,y2],'color','r','linestyle','--');

Answers (1)

Thorsten
Thorsten on 5 Nov 2015
x1 = 10; x2 = 20; y1 = 12; y2 = 34;
line([x1 x2],[y1,y2],'color','r','linestyle','--');
legend('my dashed red line')
  2 Comments
Mr M.
Mr M. on 9 Nov 2015
Edited: Mr M. on 9 Nov 2015
Yes, but I want to use it in general. For example I have plot; plot; line; plot; hist; line; plot; bars; etc. And how to add legend to the lines?
Thorsten
Thorsten on 10 Nov 2015
Edited: Thorsten on 10 Nov 2015
h = line([x1 x2],[y1,y2],'color','r','linestyle','--');
legend(h, 'my dashed red line')
If this does not the job, please post a minimal working example of what you try to do and what goes wrong.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!