a legend from a sting array
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a string array with a unknown number of cells in a row. How can I make a legend of them? Every 2D line one cell.
1 Kommentar
Antworten (1)
KSSV
am 17 Apr. 2018
str{1} = 'one' ;
str{2} = 'two' ;
str{3} = 'three' ;
figure
hold on
for i = 1:3
plot(rand(10,1)) ;
end
legend(str)
Siehe auch
Kategorien
Mehr zu Legend finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!