フィルターのクリア

Hi, Can someone tell me how to remove (data1 that caused by the reference line) from legend?

16 ビュー (過去 30 日間)
set(gca,'YTICK',[0 13.6 20 40]);
plot(x ,SNR_db,'Color',color,'LineStyle',style );
lgd = legend( 'theta 30,FOV 50','theta 40,FOV 20','theta 40,FOV 30','with less error','ideal case');
end
hold off
hline = refline(0,13.6);
set(hline,'color','k');
%set(hline,'Marker','o');
set(hline,'LineStyle','-');

採用された回答

Adam Danz
Adam Danz 2019 年 4 月 3 日
編集済み: Adam Danz 2019 年 4 月 3 日
Option 1
Turn off auto-updating so objects plotted after calling legend() do not appear on the legend.
lgd = legend( 'theta 30,FOV 50','theta 40,FOV 20','theta 40,FOV 30','with less error','ideal case', ...
'AutoUpdate','off');
Option 2
Plot the legend at the end and specify the object handles that should appear in the legend.
h = plot(x,y);
lgd = legend(h, 'theta 30,FOV 50');
% h can be a vector corresponding to each label name.
If you use the DisplayName property, you just need to provide the handles.
h = plot(x,y,'DisplayName', 'theta 30,FOV 50');
lgd = legend(h);

その他の回答 (1 件)

Muhammad Qasim
Muhammad Qasim 2021 年 1 月 18 日
Hi,
write this before reference line code.
legend('AutoUpdate','off')

カテゴリ

Help Center および File ExchangeLegend についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by