change legend name of ROC

5 次查看(过去 30 天)
How to change the legend name (class1, class2, ...) of ROC when using
plotroc(Ts,Y)

采纳的回答

KSSV
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 个)

标签

Community Treasure Hunt

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

Start Hunting!

Translated by