How can i display Amharic fonts on MATLAB GUI whose unicode ranges from ሀ t0 ፼ ?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
hassen Seid
el 3 de Oct. de 2015
Comentada: Walter Roberson
el 20 de Oct. de 2015
original string='ሀለመሰረቀበተቸነአከወዘ';
on MATLAB editor and push buttons the string becomes a square box.
on Matlab Edit texts it shows nothing except the HTML tag.
pushbutton = uicontrol('style', 'push', 'edit', '<html>abሀሁሂሃc');
0 comentarios
Respuesta aceptada
Walter Roberson
el 3 de Oct. de 2015
Editada: Walter Roberson
el 20 de Oct. de 2015
Unicode is not supported in plots or uicontrols before R2014b. Which MATLAB version are you using, and which font are you configuring?
Actually in OS-X in R2014a (before the full Unicode support), the following works for me:
pushbutton = uicontrol('style', 'push', 'string', '<html>abሀሁሂሃc');
However, setting an edit control to this or to contain the unicode characters does not work in R2014a
5 comentarios
Walter Roberson
el 20 de Oct. de 2015
pushbutton = uicontrol('style', 'push', 'string', '<html>abሀሁሂሃc');
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings 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!