Displaying (in the prompt) latin characters, such as á, é, í, ó, ú, and ñ, using MATLAB R2010b/R2011a for mac
15 次查看(过去 30 天)
显示 更早的评论
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 个评论
Walter Roberson
2016-9-4
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.
采纳的回答
Andrew Newell
2011-4-28
Maybe I have been missing the embarrassingly obvious:
disp('Química, Matemáticas, Español.')
5 个评论
更多回答(2 个)
Andrew Newell
2011-4-26
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 个评论
Walter Roberson
2016-9-4
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.
Anandakumar Selvaraj
2014-2-27
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!