How I can read Ethiopic-Unicode text and display on matlab command line?
Show older comments
I want to develop Information Retrieval system for Amharic language corpus using matlab R2018a but matlab command line couldn't display Ethiopic-Unicode characters.
5 Comments
Walter Roberson
on 17 Jul 2018
It can on my Mac.
>> char(hex2dec({'120c', '120d'}))
ans =
2×1 char array
'ሌ'
'ል'
MATLAB does not support the \u escape sequence.
Mount Hanks
on 30 Jul 2018
Walter Roberson
on 30 Jul 2018
You might need to configure a different font for the command line.
Mount Hanks
on 31 Jul 2018
Christopher Creutzig
on 26 Nov 2018
> MATLAB does not support the \u escape sequence.
But it does support \x in compose:
>> compose("\x120c\x120d")
ans =
"ሌል"
Answers (0)
Categories
Find more on Characters and Strings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!