Borrar filtros
Borrar filtros

How to set custom title to scatterplot?

12 visualizaciones (últimos 30 días)
Louis Tomczyk
Louis Tomczyk el 30 de Mayo de 2022
Comentada: Louis Tomczyk el 30 de Mayo de 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

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Discrete Data Plots en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by