Using Matlab compiler, accents are replaced by question marks.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I have a tiny problem: in French, some words have accents. After compilation with Matlab compiler, accents are replaced by question marks. How can I solve this problem? Thank you for any help you can offer.
Rodrigo
3 comentarios
Rodrigo De oliveira
el 5 de Jul. de 2019
Movida: Stephen23
el 6 de Feb. de 2023
Marc Raventós Tato
el 6 de Feb. de 2023
Movida: Stephen23
el 6 de Feb. de 2023
Did you manage to solve this? I am facing the exact same problem now.
Respuestas (1)
Constantino Carlos Reyes-Aldasoro
el 6 de Feb. de 2023
try using the ascii code for the letters that you want to be displayed, e.g.
disp(strcat('d',233,'terministes'))
3 comentarios
Constantino Carlos Reyes-Aldasoro
el 7 de Feb. de 2023
I had similar problems changing from Mac to PC and between versions. But since using ASCII, even if it is a slight complication, I have not had those problems.
Walter Roberson
el 7 de Feb. de 2023
In r2012 you got lucky that the characters you were interested in happened to be representable in 8 bits in your default character set. In current versions, utf-8 encoding is used so multibyte encoding is used. Apparently the compiler is not expecting utf-8 encoding.
Ver también
Categorías
Más información sobre MATLAB Compiler en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!