How do I determine my MATLAB default character encoding scheme?
31 ビュー (過去 30 日間)
古いコメントを表示
Using unicode2native with a single argument, it defaults to "the MATLAB default character encoding scheme". How do I find out what my default is?
0 件のコメント
回答 (4 件)
Grzegorz Knor
2011 年 9 月 8 日
Use java class:
import java.nio.charset.Charset
encoding = Charset.defaultCharset()
2 件のコメント
Grzegorz Knor
2011 年 9 月 8 日
"MATLAB, unless you specify a particular encoding will use the computer's (user's) default encoding."
<http://blogs.mathworks.com/loren/2006/09/20/working-with-low-level-file-io-and-encodings/>
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!