Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
textMATLABのコマンドを使用して、画面にヘブライ語のテキストを表示したい:
text
text(0.6, 0.5, 'ירוק', 'rotation', 180, 'fontsize', 50, 'color', 'r')
問題は、それがぎこちない表示をすることです。
誰かが理由を知っていますか?テキストを正しく表示するにはどうすればよいですか?
ヘブライ文字をサポートするフォントを使用する必要があります。デフォルトのフォント(Helvetica)はサポートしていません。'Courier'、David'などを使用できます。例:
text(0.6,0.5,'ירוק','fontname','david','rotation',180,'fontsize',50,'color','r')
בהצלחה!