While there now seem to be solutions for storing Unicode characters in .m files, I would still like a better alternative to the clunky LaTex method for special characters on plots. With the advent of Unicode, I don't see why labels, titles, and texts shouldn't be specified directly in Unicode. That would make the .m file text look like the text on the plot. (I think they call that approach 'WYSIWYG'.) Adding an 'Insert Symbol' feature to the editor would make labels, titles, and texts so much more convenient then remembering arcane \<symbol> sequences.
unicode characters in .m file
140 次查看(过去 30 天)
显示 更早的评论
Matlab claims to be Unicode compliant, but only characters whose code # is ≤255 can be saved in .m files. I can accept that Matlab code words must be in ASCII, but there should be no such constraints on characters in comments or text strings. It would be nice if useful characters, like "≈", "Ω", "≤","≥", etc., could be saved in comments. On a similar note, while a character whose code is ≥128 and ≤255 can be stored in .m files, it is not possible to include them directly in graphics labels or text; typing '\circ' (1970s LaTex convention) seems clunky compared to "Alt+0176" (or pasted from another document) for the degrees symbol(°).
2 个评论
Walter Roberson
2017-7-19
unicode characters can be included directly for text() objects when using Interpreter Tex (the default) or Interpreter None . However, at this time unicode characters cannot be included directly for latex.
采纳的回答
Rahul Arora
2017-7-17
编辑:Rahul Arora
2017-7-17
For R2017a, the steps are similar to the ones described in https://www.mathworks.com/matlabcentral/answers/280988-how-do-i-get-my-matlab-editor-to-read-utf-8-characters-utf-8-characters-in-blank-squares-in-editors. The only difference is that the matlabroot/bin/lcdata.xml file no longer describes all standard locales and encodings. But you can still use this file for customizing the locale database.
For my case, the encoding is windows-1252 (you can find your encoding using the feature('locale') command), and therefore, I added the following lines to the <lcdata> ... </lcdata> block in lcdata.xml.
<codeset>
<encoding name="UTF-8">
<encoding_alias name="windows-1252" />
</encoding>
</codeset>
Just modify based on your own system encoding.
4 个评论
Andrey Kazak
2019-5-13
The fix does not work on 2018b for Windows.
Please suggest a workaround.
Thank you.
Rahul Arora
2019-11-28
Hi Andrey
I just tried doing this on my MATLAB installation (R2019b, Windows 10) and it works fine. Please note that you have to restart MATLAB after performing the edit I suggested.
更多回答(5 个)
MathWorks Support Team
2021-2-19
编辑:MathWorks Support Team
2021-2-19
As of R2020a, the MATLAB Editor supports UTF-8 characters, and uses UTF-8 as the default encoding for new plain text files, including MATLAB code files with a .m extension.
0 个评论
Walter Roberson
2017-5-19
The instructions for OS-X (Mac) are given at in the Release Notes https://www.mathworks.com/help/matlab/release-notes.html?rntext=internationalization&startrelease=R2012a&endrelease=R2017a&groupby=release&sortby=descending&searchHighlight=internationalization
Jan
2017-5-19
Please read https://www.mathworks.com/matlabcentral/answers/262114-why-i-can-not-read-comments-in-chinese-in-my-mfile . It is possible to display Unicode in the editor.
14 个评论
Shaul Shvimmer
2020-7-31
I'm using MATLAB 2020a and I still have the problem - I cannot change encoding to UTF-8 using Windows 10.
Muhammad Kashif
2018-3-14
编辑:Muhammad Kashif
2018-4-6
Assalam O Alikum and good day all
For those using languages having Arabic script e.g. Arabic ,Urdu.
1)Change the system Locale to Urdu(Pakistan) for Urdu.For Arabic, change the system locale accordingly.
2)For displaying Urdu and Arabic in Matlab Command prompt,use the following command:
>>slCharacterEncoding('UTF-8')
3) In the matlab editor, to make the string functions like strsplit() work properly for Urdu and Arabic, this should be the first line of code:
feature('DefaultCharacterSet', 'UTF8');
Best regards
1 个评论
Walter Roberson
2019-9-14
Unfortunately, slCharacterEncoding() is for Simulink use, not the MATLAB command prompt.
Jean-Michel Rousseau
2020-1-10
Hello,
Is ther any way to definitively change the 'DefaultCharacterSet' without the need to use the feature function at every start of Matlab?
I need to use 'windows-1252' and Matlab (& Simulink) always start with "UTF-8". It as recently canged after updating to the R2019b. As I can't solve the problem into R2019b (my folders and files with accent can't be used anymore without renaming them), i go back to a fresh R2016b but the problem remain :-(
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!