How can i display Amharic fonts on MATLAB GUI whose unicode ranges from ሀ t0 ፼ ?
12 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
hassen Seid
le 3 Oct 2015
Commenté : Walter Roberson
le 20 Oct 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 commentaires
Réponse acceptée
Walter Roberson
le 3 Oct 2015
Modifié(e) : Walter Roberson
le 20 Oct 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 commentaires
Walter Roberson
le 20 Oct 2015
pushbutton = uicontrol('style', 'push', 'string', '<html>abሀሁሂሃc');
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Characters and Strings dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!