Displaying hebrew text on screen

后端 未结 1 570
小鲜肉
小鲜肉 2020-12-20 13:36

I want to display hebrew text on the screen using the text command in MATLAB:

text(0.6, 0.5, \'ירוק\', \'rotation\', 180, \'fontsize\', 50, \'color\', \'r\')         


        
相关标签:
1条回答
  • 2020-12-20 14:17

    You need to use a font that supports Hebrew characters - the default font (Helvetica) does not. You can use 'Courier', David' etc. For example:

    text(0.6,0.5,'ירוק','fontname','david','rotation',180,'fontsize',50,'color','r')
    

    בהצלחה!

    0 讨论(0)
提交回复
热议问题