how can set the string in bar plot??
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ahmad hashemi
am 24 Mär. 2017
Kommentiert: ahmad hashemi
am 26 Mär. 2017
hi everybody I'm gonna to do this work? What do I do?
0 Kommentare
Akzeptierte Antwort
mizuki
am 26 Mär. 2017
The easiest way is to use plot tools
>> plottools
and insert the text arrow.
f1 = figure;
y = [75 91 105 123.5 131 150 179 203 226 249 281.5];
bar(y)
annotation(f1,'textarrow',[0.55 0.8],...
[0.87 0.87],'String',{'this work'});
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations 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!