how to set the figure title using corrplot() ?

20 ビュー (過去 30 日間)
Lucas Carey
Lucas Carey 2015 年 6 月 16 日
編集済み: Adam Danz 2018 年 12 月 10 日
the title in figures made using corrplot() is 'Correlation Matrix' and title() doesn't change this. How can I set the title in this figure?
  2 件のコメント
B.k Sumedha
B.k Sumedha 2015 年 6 月 16 日
What have u tried so far?
Lucas Carey
Lucas Carey 2015 年 6 月 16 日
title(), set(gcf , and set(gca

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

回答 (1 件)

Adam Danz
Adam Danz 2018 年 10 月 3 日
編集済み: Adam Danz 2018 年 12 月 10 日
I was also searching for a solution to this and didn't find one. So, here's the solution I came up with to change the title of a corrplot() plot.
fh = figure;
corrplot(...);
th = findall(fh, 'type', 'text', 'String', '{\bf Correlation Matrix}');
th.String = 'New Title';
[updated] fh is merely the handle to the figure hosting corrplot(). This now works with 2018b and older releases.
  2 件のコメント
miicha
miicha 2018 年 12 月 10 日
In Matlab r2018b it will not work, since first output argument of corrplot is R not a handle and the handle you get is for the chart line objects...
[R,P,fh] = corrplot(...);
th = findall(fh(1).Parent.Parent, 'type', 'text', 'String', '{\bf Correlation Matrix}');
th.String = 'New Title';
With the above changes it'll work again
Adam Danz
Adam Danz 2018 年 12 月 10 日
I made a small adaptation to my original solution. All you really need is the handle to the figure which can be obtained by miicha's method, by using gcf(), or by creating the figure just prior to corrplot().

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

カテゴリ

Help Center および File ExchangeTitle についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by