当前位置:网站首页>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 .
边栏推荐
- ABA问题遇到过吗,详细说以下,如何避免ABA问题
- 3. Input and output functions (printf, scanf, getchar and putchar)
- Why use redis
- Floating point comparison, CMP, tabulation ideas
- 受检异常和非受检异常的区别和理解
- 实验八 异常处理
- 实验五 类和对象
- Differences among fianl, finally, and finalize
- Cookie和Session的区别
- 3. C language uses algebraic cofactor to calculate determinant
猜你喜欢
3. Number guessing game
编写程序,模拟现实生活中的交通信号灯。
4. Branch statements and loop statements
C language Getting Started Guide
[dark horse morning post] Shanghai Municipal Bureau of supervision responded that Zhong Xue had a high fever and did not melt; Michael admitted that two batches of pure milk were unqualified; Wechat i
MySQL lock summary (comprehensive and concise + graphic explanation)
1. First knowledge of C language (1)
4. Binary search
Nuxtjs快速上手(Nuxt2)
20220211-CTF-MISC-006-pure_ Color (use of stegsolve tool) -007 Aesop_ Secret (AES decryption)
随机推荐
[during the interview] - how can I explain the mechanism of TCP to achieve reliable transmission
Change vs theme and set background picture
[面试时]——我如何讲清楚TCP实现可靠传输的机制
[the Nine Yang Manual] 2019 Fudan University Applied Statistics real problem + analysis
Mortal immortal cultivation pointer-2
这次,彻底搞清楚MySQL索引
[hand tearing code] single case mode and producer / consumer mode
7-9 制作门牌号3.0(PTA程序设计)
[modern Chinese history] Chapter 6 test
5. Download and use of MSDN
Using qcommonstyle to draw custom form parts
【九阳神功】2022复旦大学应用统计真题+解析
7-3 构造散列表(PTA程序设计)
C语言入门指南
Beautified table style
一段用蜂鸣器编的音乐(成都)
魏牌:产品叫好声一片,但为何销量还是受挫
7-7 7003 组合锁(PTA程序设计)
A piece of music composed by buzzer (Chengdu)
ArrayList的自动扩容机制实现原理