How do I determine my MATLAB default character encoding scheme?
Afficher commentaires plus anciens
Using unicode2native with a single argument, it defaults to "the MATLAB default character encoding scheme". How do I find out what my default is?
Réponses (4)
Grzegorz Knor
le 8 Sep 2011
Another solution:
feature('DefaultCharacterSet')
Grzegorz Knor
le 8 Sep 2011
Use java class:
import java.nio.charset.Charset
encoding = Charset.defaultCharset()
2 commentaires
Matthew Simoneau
le 8 Sep 2011
Grzegorz Knor
le 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/>
Grzegorz Knor
le 8 Sep 2011
get_param(0, 'CharacterEncoding')
1 commentaire
Matthew Simoneau
le 8 Sep 2011
Jan
le 8 Sep 2011
Matlab 2009a, WindowsXP:
get(0, 'Language')
% >> 'en_us.windows-1252'
1 commentaire
Matthew Simoneau
le 8 Sep 2011
Catégories
En savoir plus sur Data Type Identification dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!