
Help for turkish characters matlab r2017b
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Why does matlab r2017b do not recognize turkish characters like graphic display (ş, ğ). my operating system's windows 10, location settings turkey and entry language turkish Q. For example, when I run below codes in m file, 'ğ' and 'ş' characters do not look graphically in the desired format. Is there a solution this problem? thanks
figure
xlabel('ğ')
ylabel('ç')
title('ö ç ş ğ ü')
>>
feature('DefaultCharacterSet')
ans =
'windows-1254'
0 comentarios
Respuestas (1)
Kamil Çöllü
el 17 de Nov. de 2018
I had a similar problem but my operating system language was English. After reading this answer, I changed my operating system language to Turkish and also changed my Region and other related settings to Turkey, then I got the Turkish characters. And I tried your code that you can see below.
figure
xlabel('ğ')
ylabel('ç')
title('ö ç ş ğ ü')
>> feature('DefaultCharacterSet')
ans =
'windows-1254'
Result is:

0 comentarios
Ver también
Categorías
Más información sobre Structures 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!