当前位置:网站首页>Matlab opens M file garbled solution
Matlab opens M file garbled solution
2022-07-06 13:49:00 【zhugby】
Matlab open .m The document has Chinese garbled , Because Matlab There is Two encoding formats :GBK and UTF-8, And different versions of Matlab The coding format may not be uniform , So in different versions Matlab Open file , Due to the change of coding format , It will cause comments to be garbled .
1. View your Matlab File encoding method , stay Matlab In the command line window feature('locale') , Here's the picture , You can see that the default code is GBK, The problem becomes take Matlab File encoding method GBK Modified into UTF-8;
2. Find you. Matlab The installation directory bin Under folder lcdata_utf8.xml file , Open with notepad and save as lcdata.xml file . Here we find lcdata.xml Already exists , No replacement , Modify the original lcdata.xml After the name of lcdata_utf8.xml file save as lcdata.xml file .
3. Notepad open lcdata.xml file ,ctrl+f lookup <encoding name="GBK">, Find this section ;
take This short piece of code is deleted
4. lookup <encoding name="UTF-8">, Find this section ;
Add the statement <encoding_alias name="GBK"/> As shown below
5. Save the file , close Matlab Open it again , The code is correct !
Similarly, if UTF-8 Coded Matlab Open Chinese garbled , Only need to UTF-8 Turn into GBK The encoding format is ok , The same idea is to <encoding name="UTF-8"> Partial code deletion , stay <encoding name="GBK"> Add <encoding_alias name="utf8"/> Just fine .
——————————————————————————————————————————
The above method can solve the error of Chinese garbled code , However, it was later found that Chinese characters in the command line window may be garbled , The above method has changed jvmEncoding=utf8 But other codes are still GBK, This inconsistency may lead to many conflicts , Therefore, the above methods should be used with caution , Not really recommended . After stepping on the thunder , So , Another two methods are summarized .
The second kind Simple and crude method , It has been ensured MATLAB Encoded as GBK however .M The file code is UTF8 after , Use the notepad that comes with your computer to open this M file , choice “ Save as ”, Modify the coding method to “ANSI”, Save the file and reuse IDE open .M File can . This is not applicable to large quantities of multiple files , It's hard to open one by one , And there may be omissions .
The third kind of Way , If you have notepad++ Words , It's more convenient ! It is suggested that friends who write code should have one in hand , Slowly you will find that you can't live without him .
1) First , Menu bar selection file > Open the folder as a workspace , Put the entire folder where your code is located .
2) Choose .m file , View this... In the menu bar .M Coding of documents , if UTF-8 Coding or other coding methods that cannot be displayed normally , Two options , code > Turn into ANSI code or code > Coded character set > chinese >GB2312( Simplified Chinese ), Check the encoding format of all files in the folder , Conversion save .
3)matlab open , The Chinese characters of all files are displayed normally, and the Chinese display of the command line window is also normal .
边栏推荐
猜你喜欢
一段用蜂鸣器编的音乐(成都)
Safe driving skills on ice and snow roads
1. First knowledge of C language (1)
2.初识C语言(2)
(original) make an electronic clock with LCD1602 display to display the current time on the LCD. The display format is "hour: minute: Second: second". There are four function keys K1 ~ K4, and the fun
使用Spacedesk实现局域网内任意设备作为电脑拓展屏
SRC挖掘思路及方法
FAQs and answers to the imitation Niuke technology blog project (III)
MySQL锁总结(全面简洁 + 图文详解)
ABA问题遇到过吗,详细说以下,如何避免ABA问题
随机推荐
Using qcommonstyle to draw custom form parts
[modern Chinese history] Chapter 6 test
【九阳神功】2017复旦大学应用统计真题+解析
5月14日杂谈
3. C language uses algebraic cofactor to calculate determinant
2. C language matrix multiplication
[the Nine Yang Manual] 2018 Fudan University Applied Statistics real problem + analysis
扑克牌游戏程序——人机对抗
Implementation principle of automatic capacity expansion mechanism of ArrayList
The difference between cookies and sessions
(原创)制作一个采用 LCD1602 显示的电子钟,在 LCD 上显示当前的时间。显示格式为“时时:分分:秒秒”。设有 4 个功能键k1~k4,功能如下:(1)k1——进入时间修改。
7-15 h0161. 求最大公约数和最小公倍数(PTA程序设计)
力扣152题乘数最大子数组
6. Function recursion
实验七 常用类的使用
2.C语言初阶练习题(2)
A comprehensive summary of MySQL transactions and implementation principles, and no longer have to worry about interviews
Relationship between hashcode() and equals()
Caching mechanism of leveldb
[面試時]——我如何講清楚TCP實現可靠傳輸的機制