Help for turkish characters matlab r2017b

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'

Answers (1)

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:
untitled.png

Categories

Asked:

on 17 Oct 2017

Answered:

on 17 Nov 2018

Community Treasure Hunt

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

Start Hunting!