i try to simulate a model. the script i launch calls somewhere a syntax like this.[status, task]=dos('tasklist /fo "CSV" /v /nh /FI "IMAGENAME eq EXCEL.exe"'); in dos it is display a message in french language, but in matlab appears some strange characters.
matlab recognise french character
조회 수: 11 (최근 30일)
이전 댓글 표시
채택된 답변
Hervé
2014년 3월 14일
The problem comes from the fact that MS-Windows “DOS-shell” ("cmd.exe" window) does not use the same character encoding than MS-Windows and next than the 16 bits Matlab char type. The former uses (at least up to Windows7; I do not already check with Windows8) old DOS "code page" encoding; Windows use 8bits ISO-LATIN-1 (ISO 8859-1) and Matlab 16 bits char type uses "Unicode" character encoding (from the ~6.5 or ~7.0 version; before, Matlab used the native 8bits Windows encoding in a 8bits char type...).
It seems that the " dos " (or " ! ") Matlab command forgets to apply correct transcoding to the returned or displayed string. There is now a simple workaround:
b=unicode2native(task); % transcodes back to original 8bits DOS code
msgOK=native2unicode(b,'IBM850') % does the *correct* transcoding
'IBM850' stands for “Code Page 850”, which is the code page for French Windows (and old French DOS). For other Windows localization, the DOS command " CHCP " allows to retrieve the current code page (from within Matlab, type « !CHCP » in the Command Window with the exclamation mark in front).
It is important to note that this transcoding problem seems to only exist for the returned or displayed string, but not for the input string. If filenames or usernames contain accented character, you can directly type the string in the Matlab editor without the need to manually transcode it. This is illustrated in the following example that displays the list of the current directory files whose names contain an e_acute character "é":
[s,msgWrong]=dos('dir *é*.*'); % NO need to transcode "é" (e acute) in the input
b=unicode2native(msgWrong);
msgOK=native2unicode(b,'IBM850') % but we need to correctly transcode the answer...
All of this sounds like a Matlab bug (that is there from many years). As I also recurrently face this problem, I have recently submitted a bug report to TMW in the hope that next Matlab release will fix this output string character transcoding error to avoid the need for the two lines workaround (which, however, cannot be used for the "!" syntax)...
댓글 수: 0
추가 답변 (3개)
Hervé
2016년 1월 16일
Note that Release R2015b of Matlab natively fixes this bug for "dos" and "!". We thus don't need this trick any more. (More over applying this method in (≥)R2015b would now give bad results). For information.
댓글 수: 0
José-Luis
2014년 1월 16일
What character encoding are you using? Might be that French is not supported for it. You could always change it.
doc slCharacterEncoding
댓글 수: 3
Walter Roberson
2014년 1월 16일
How are you attempting to use the characters? You cannot use them in variable names. You can use them in comments and in strings. Azzi showed an example in a string; using that example depends upon your MS Windows font and keyboard settings.
Azzi Abdelmalek
2014년 1월 16일
편집: Azzi Abdelmalek
2014년 1월 16일
If I write
s='Hétérogénéité'
The result is
s=
Hétérogénéité
You can't use Hétérogénéité as a variable, but you don't need it
댓글 수: 3
참고 항목
카테고리
Help Center 및 File Exchange에서 Entering Commands에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!