How can I save unicode characters in m-files and display them in figures using m-files?
3 次查看(过去 30 天)
显示 更早的评论
Unicode characters (Hebrew letters, in my case) are not saved in m-files. After saving and re-opening the file I see blocks instead of the unicode characters. Also, when I try to display unicode characters in a figure, I get blocks; however, command line works fine and also displaying unicode characters that were read from a file. I tried to apply the solution given here, but this did not solve the problem and displayed garbage. Any solution?
3 个评论
Walter Roberson
2020-10-11
R2020a does not need the lcdata_utf8 trick. It now stores .m files as utf-8 so code can contain them directly.
To display unicode inside a figure, the Interpreter for the text data must be 'none' or 'tex'; you cannot display arbitrary unicode characters when the Interpreter is 'latex'
采纳的回答
Ron Chen
2018-11-4
1 个评论
Andrey Kazak
2019-5-13
The fix does not work on 2018b for Windows.
Please suggest a workaround.
Thank you.
更多回答(1 个)
Walter Roberson
2018-11-1
By default, only the Korean, Japanese, and Chinese versions store source code in utf8 as is needed to store such characters directly in the file. For all other regions, you have to tweak MATLAB in a system dependant manner.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!