Effacer les filtres
Effacer les filtres

How to set custom title to scatterplot?

12 vues (au cours des 30 derniers jours)
Louis Tomczyk
Louis Tomczyk le 30 Mai 2022
Commenté : Louis Tomczyk le 30 Mai 2022
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

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Discrete Data Plots dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by