フィルターのクリア

How to set custom title to scatterplot?

10 ビュー (過去 30 日間)
Louis Tomczyk
Louis Tomczyk 2022 年 5 月 30 日
コメント済み: Louis Tomczyk 2022 年 5 月 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')
  1 件のコメント
Louis Tomczyk
Louis Tomczyk 2022 年 5 月 30 日
Thank you!
Best,
louis

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDiscrete Data Plots についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by