matlab recognise french character

조회 수: 11 (최근 30일)
Gabriela
Gabriela 2014년 1월 16일
답변: Hervé 2016년 1월 16일
Hi, i have installed matlab 2011a on windows in French, but it seems that matlab doesn't recognise the letters with accent. What should I do?
  댓글 수: 1
Gabriela
Gabriela 2014년 1월 16일
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.

댓글을 달려면 로그인하십시오.

채택된 답변

Hervé
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)...

추가 답변 (3개)

Hervé
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.

José-Luis
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
Gabriela
Gabriela 2014년 1월 16일
i've tried but is not ok. the characters are â,é,è.
Walter Roberson
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
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
José-Luis
José-Luis 2014년 1월 16일
What does slCharacterEncoding() return?
Gabriela
Gabriela 2014년 1월 16일
'Windows-1252' i've tried also with 'ISO-8859-1', but is not good

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Entering Commands에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by