how to add label to diagram plotted using plot function?
조회 수: 2 (최근 30일)
이전 댓글 표시
how to add label to diagram plotted using plot function?
댓글 수: 2
채택된 답변
Preethi
2019년 2월 13일
hi,
hope this helps
xlabel('X axis'); % to label X axis
Ylabel('Value'); % to label Y axis
title('Name'); %to provide title to your plot
댓글 수: 3
Preethi
2019년 2월 14일
check this
for circle
plot(x,y);
c = cellstr(b);%b contains the characters you want to print in plot
dx = 0.1; dy = 0.1;
text(x+dx, y+dy, c);
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Axis Labels에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!