how can set the string in bar plot??
조회 수: 1 (최근 30일)
이전 댓글 표시
hi everybody I'm gonna to do this work? What do I do?
댓글 수: 0
채택된 답변
mizuki
2017년 3월 26일
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'});
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!