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')
בהצלחה!