I'm trying to make a simple plot in MATLAB r2014a, on a Ubuntu 14.04 machine, some of the labels contains some of the Scandinavian letters æ(Æ), ø(Ø) and å(Å).
But when i'm trying to use whose letters in a label I just get some trash on the plot. I've checked the encoding MATLAB is using with.
slCharacterEncoding()
It returns UTF-8 with should allow whose letters, i've also tried to change it to windows-1252 which works on windows with the letters.
I know that i can use the 'interpret' 'latex' but i'm looking for a permanent solution.
EDIT: After some time i figured that the letters are available, if i write in the terminal
char(230)
I get a 'æ' i also fond the other letters with the numbers: æ = 230, ø = 248, å = 229, Æ = 199, Ø = 216, Å = 198 Is it possible to remap them ?