私はMatlab 2016aのBioinformatics Toolboxを使用しています。私はmat = DataMatrix()
を使用して行と列のラベルを持つ行列を作成してから、fig = HeatMap(mat)
を使ってヒートマップを作成します。行ラベルと列ラベルが結果のFigureに自動的に追加されます。Matlab Bioinformatics ToolboxのHeatMap()のフォントを変更
結果のFigure内のすべてのフォントをArialに変更したいとします。私はアンダースコアが添え字として解釈されるのを止めたい。ただし、コマンド:エラーで
fig = HeatMap(mat,'Colormap','fontName','Arial','Interpreter','none')
結果:
Unknown parameter name: fontName.
Unknown parameter name: Interpreter.
とコマンド:中
set(fig,'fontName','Arial','Interpreter','none')
結果:
The name 'fontName' is not an accessible property for an instance of class 'HeatMap'.
The name 'Interpreter' is not an accessible property for an instance of class 'HeatMap'.
どのように私は結果を得ることができますが欲しいです?