change legend name of ROC
1 回表示 (過去 30 日間)
古いコメントを表示
How to change the legend name (class1, class2, ...) of ROC when using
plotroc(Ts,Y)
0 件のコメント
採用された回答
KSSV
2022 年 9 月 15 日
plotroc(Ts,Y)
hLegend = findobj(gcf, 'Type', 'Legend');
%get text
hLegend.String
% Change
hLegend.String {'One' 'Two' 'Three'} % put your strings here; I assume three are there
その他の回答 (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!