How I can read Ethiopic-Unicode text and display on matlab command line?

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

It can on my Mac.
>> char(hex2dec({'120c', '120d'}))
ans =
2×1 char array
'ሌ'
'ል'
MATLAB does not support the \u escape sequence.
Thanks for your effort but I've tried it on Windows 10 but it doesn't work. It displays only strings of boxes. Please I need your support.
You might need to configure a different font for the command line.
Thanks it works with Amharic font installation and configuration.
> MATLAB does not support the \u escape sequence.
But it does support \x in compose:
>> compose("\x120c\x120d")
ans =
"ሌል"

Sign in to comment.

Answers (0)

Categories

Asked:

on 17 Jul 2018

Community Treasure Hunt

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

Start Hunting!