質問

プロットされたスパース性行列のサイズが大きくなると、タイトル(TeXでタイプセットされている場合)は異常にぼやけます。この効果の基礎は何ですか、そしてそれをどのように回避することができますか?

例を示します。:

spy(magic(2)); title('Text','interpreter','latex','FontSize',20);
spy(magic(200)); title('Text','interpreter','latex','FontSize',20);

enter image description here enter image description here

役に立ちましたか?

解決

に関連する(そして実際には同じ問題) MATLAB GUIのLATEX-labelsがぼやけないようにするにはどうすればよいですか?

解決策が適用されます。入力後:

spy(magic(200)); title('Text','interpreter','latex','FontSize',20);

私は得る:

enter image description here

次のコマンドを実行します get(gcf, 'renderer') 戻り値 ans = zbuffer.その後、私は入力します set(gcf, 'renderer', 'painters') これはすぐに結果を次のようにします:

enter image description here

参考までに、これはMatlab r2011bです。

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top