Borrar filtros
Borrar filtros

Displaying (in the prompt) latin characters, such as á, é, í, ó, ú, and ñ, using MATLAB R2010b/R2011a for mac

12 visualizaciones (últimos 30 días)
Hi MATLAB community.
How can we display (in the prompt) latin characters, such as á, é, í, ó, ú, and ñ, using MATLAB R2010b/R2011a for mac (last iteration of Snow Leopard, 10.6.7)?
For example, when trying to run this script on MATLAB for mac
fprintf('Química, Matemáticas, Español.\n')
the prompt throws me
Qu?mica, Matem?ticas, Espa?ol.
which does not contain any of the latin characters I entered on my script, but those question marks as a replacement.
Any help will be greatly appreciated. Thank you.
P.S. 1: I am using an Apple Western Spanish keyboard to enter those latin characters.
P.S. 2: By prompt I am referring to the MATLAB Command Window.
  4 comentarios
Walter Roberson
Walter Roberson el 4 de Sept. de 2016
Unfortunately I am not able to test this in Snow Leopard itself. I have virtual machine software that I tried with, but I hit the limitation that Apple's EULA did not permit Snow Leopard itself to be installed as a virtual machine (it did permit Snow Leopard Server to be installed in a virtual machine.) I think we got rid of the last of our Snow Leopard compatible machines here.
The earliest OS-X I could potentially test with is Lion, the release after Snow Leopard... but if I still have Lion install disks around then then are in some closet or other. Mavericks is the earliest I could definitely try with.
Ricardo Prada
Ricardo Prada el 2 de Mzo. de 2017
Thanks Fernando and Walter for your reply.
It looks like the bug was fixed some time ago. I am running MATLAB R2016b, and now those characters display correctly on the Command Window.

Iniciar sesión para comentar.

Respuesta aceptada

Andrew Newell
Andrew Newell el 28 de Abr. de 2011

Maybe I have been missing the embarrassingly obvious:

disp('Química, Matemáticas, Español.')
  5 comentarios
Walter Roberson
Walter Roberson el 28 de Abr. de 2011
I wonder if perhaps it was stuck on a particular output font...
Ricardo Prada
Ricardo Prada el 28 de Abr. de 2011
Hi Walter, at this point, I think it is tough to know. But most likely you are right.

Iniciar sesión para comentar.

Más respuestas (2)

Andrew Newell
Andrew Newell el 26 de Abr. de 2011
You could try changing the locale.
EDIT: I found a better solution:
fprintf(native2unicode('Química, Matemáticas, Español.','latin1'))
The output is:
Química, Matemáticas, Español.>>
I looked at this command earlier but didn't use it in the right way. You said you wanted a prompt, so I took out the \n.
  20 comentarios
Walter Roberson
Walter Roberson el 4 de Sept. de 2016
Note: when you see a 26 in the output of unicode2native, that indicates a character which could not be translated to the target character set.

Iniciar sesión para comentar.


Anandakumar Selvaraj
Anandakumar Selvaraj el 27 de Feb. de 2014
Try this in your code
feature('DefaultCharacterSet', 'UTF8') %# for all Character support
or try 'Windows-1250' insted UTF8
'Windows-1250' for Central European languages that use Latin script, (Polish, Czech, Slovak, Hungarian, Slovene, Serbian, Croatian, Romanian and Albanian)
Note:- that UTF-8 can be used for all languages and is the recommended charset on the Internet.

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by