same display name in two different plot
古いコメントを表示
How can i use the same display name in two different plot ? and have one display name on the legend.
3 件のコメント
Dyuman Joshi
2023 年 5 月 6 日
The description is not very clear, can you show what you want to do?
PA
2023 年 5 月 8 日
Dyuman Joshi
2023 年 5 月 8 日
回答 (1 件)
Luca Ferro
2023 年 5 月 8 日
移動済み: Image Analyst
2023 年 5 月 8 日
plot(ax, [X1 X2],[Y1 Y2], 'LineWidth',t,'Color',b, 'Displayname', 'Line');
hold on
%... rest of the code
plot(ax, [X1_2 X2_2 ],[Y1_2 Y2_2], 'LineWidth',t_2,'Color','g', 'Displayname', 'Line);
hold off
2 件のコメント
PA
2023 年 5 月 8 日
Luca Ferro
2023 年 5 月 8 日
編集済み: Luca Ferro
2023 年 5 月 8 日
after the two plot(...) use this:
legend('signalName','signalName')
i think this is the closest we can be. Having two lines of different color with only one entry in the legend that describes them both is not supported(as far as i know) and also is not how a legend should work .
If you really want only one entry for both make them of the same color and use again the legend command with only one entry.
カテゴリ
ヘルプ センター および File Exchange で Legend についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!