How do I determine my MATLAB default character encoding scheme?
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (4)
Grzegorz Knor
am 8 Sep. 2011
Use java class:
import java.nio.charset.Charset
encoding = Charset.defaultCharset()
2 Kommentare
Grzegorz Knor
am 8 Sep. 2011
"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/>
Siehe auch
Kategorien
Mehr zu Data Type Identification finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!