Changing default encoding of MATLAB
93 次查看(过去 30 天)
显示 更早的评论
Recently I changed version of matlab from 2020b to 2023b. I cannot change default encoding from UTF-8 to Windows-1252. All of language system settings are correct.
I tried using feature('DefaultCharacterSet', 'windows-1252') but it doesn't work.
Different encoding results in displaying imported data incorrectly. I've imported data from Oracle database. In previous version of matlab with default encoding windows-1252 there was no such problem.
2 个评论
Dyuman Joshi
2023-9-29
As you are importing data, try this alternative -
% read in the file
fID = fopen(filename, 'r', 'n', 'windows-1252');
data = fread(fID);
fclose(fID);
采纳的回答
Bruno Luong
2023-9-29
I see someone succeed in older MATLAB by editing the file
[matlabroot '\bin\lcdata.xml']
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Large Files and Big Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!