I have a great application written in Matlab with lines and comments using ISO8859-1. I would like to launch and update this application in the Matlab UTF-8 environment (Matlab 2012a for Linux). Is it possible? The editor shows small squares for all non-ASCII characters, and string comparison does not work.
He is my quick decision:
There seems to be no reliable way to deal with non-native encoding from Matlab itself. I assumed that the encoding change from the application did not work. Instead, I changed my language from the command line before starting Matlab. Sort of
export LC_CTYPE="en_US.ISO-8859-1"; matlab;
source share