How to set custom title to scatterplot?

12 次查看(过去 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

采纳的回答

Walter Roberson
Walter Roberson 2022-5-30
h = scatterplot() returns a figure. You need to
ax = h.CurrentAxes;
title(ax, 'Desired Title')

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Discrete Data Plots 的更多信息

产品


版本

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by