How to set custom title to scatterplot?
조회 수: 14 (최근 30일)
이전 댓글 표시
Dear all,
I wonder how to set custom title to (communication toolbox)?
It seems that in the code of the function, we cannot change it (line 144 from the function file - R2021b).
% Label the plot
ylabel(ax, 'Quadrature')
xlabel(ax, 'In-Phase')
title(ax, 'Scatter plot')
Thanks in advance,
Best,
louis
댓글 수: 0
채택된 답변
Walter Roberson
2022년 5월 30일
h = scatterplot() returns a figure. You need to
ax = h.CurrentAxes;
title(ax, 'Desired Title')
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Graphics Object Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!