How do I change the default text interpreter for a plot axis label in R2015a?

203 ビュー (過去 30 日間)
Tom Grana
Tom Grana 2015 年 11 月 15 日
コメント済み: Paul Sampson 2022 年 4 月 7 日
In previous versions on Matlab, I could set the default text interpreter to 'none' to avoid undesired subscripts in my plots by using this line in my startup file
set(0, 'DefaultTextInterpreter', 'none')
In 2015a this does not effect axis labels or legends. I can now effect legends with a separate command in my startup file using
set(0, 'DefaultLegendInterpreter', 'none')
And I can effect axis labels locally in a plotting script
set(gca, 'TickLabelInterpreter', 'none')
But how do I effect axis labels on a global level?

採用された回答

Walter Roberson
Walter Roberson 2015 年 11 月 16 日
Try
set(groot, 'DefaultAxesTickLabelInterpreter', 'none')

その他の回答 (1 件)

Tom Grana
Tom Grana 2018 年 5 月 16 日
編集済み: Tom Grana 2018 年 5 月 16 日
Looking back at this 2.5 years later, this is what I use in my startup.m:
set(0, 'DefaultTextInterpreter', 'none')
set(0, 'DefaultLegendInterpreter', 'none')
set(0, 'DefaultAxesTickLabelInterpreter', 'none')
  1 件のコメント
Paul Sampson
Paul Sampson 2022 年 4 月 7 日
Thank you! If more people came back 2.5 years later to answer their own question, the internet would be a better place.

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

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by