Add extra marker to the plot?
1 次查看(过去 30 天)
显示 更早的评论
Happy New Year!
How can I add extra marker to a plot with several curves?
I mean suppose that the plot with several curves has already the legend with different markers. Now I want to add extra marker to some of the curves.
How can I do so?
Thanks!
Steven
采纳的回答
Walter Roberson
2014-1-1
编辑:Walter Roberson
2014-1-1
If you plot() with a linespec that has only a marker (or a marker and color) then the lines will not be drawn. Also scatter() will draw only markers.
plot(x, y, 'ro') %red circles but no line
To control the legends that result see http://www.mathworks.com/help/matlab/creating_plots/controlling-legends.html
2 个评论
Walter Roberson
2014-1-2
You would have to custom construct the second legend by creating an axes to put it in, drawing the sample lines, positioning the text, and so on.
Or alternately, you could put an second axis before the first and attach a legend to that second axis.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!