Can legend marker symbols be hard coded in MATLAB?
9 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Amos
2015-1-9
You can add a second curve that is outside the plot range and denote the symbold that you would like to see in your legend to this second curve. Then you make a legend and assign the text formally to the second curve.
Example:
figure
x_data = 1:10;
y_data = 700*rand(1,10);
plt1=plot(x_data,y_data,'r-d')
hold on
plt2=plot(-100,-100,'*')
set(gca,'Xlim',[1,10],'Ylim',[0,800])
legend(plt2,{'data1'})
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!