change legend name of ROC
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Elysi Cochin
el 15 de Sept. de 2022
Comentada: Elysi Cochin
el 17 de Sept. de 2022
How to change the legend name (class1, class2, ...) of ROC when using
plotroc(Ts,Y)
0 comentarios
Respuesta aceptada
KSSV
el 15 de Sept. de 2022
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
Más respuestas (0)
Ver también
Categorías
Más información sobre Legend en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!