On one chart I have several line plots, and one dot plot, something like that:
for i = 1:10
plot(x_1(i, :), y_1(i, :), '-k');
end
plot(x_2, y_2, '.r')'
Now I want to have a simple, 2 elements legend showing description of line (only one, not all) and dots. How to do that?
Thanks!
Use handles: