Special Characters åäö in matlab editor

2 次查看(过去 30 天)
Hi,
When I try to open an m-file in the editor all of the swedish special characters åäö are replaced with ? or square boxes.
This causes a problem when I am trying to use the addpath function as follows:
Program_folder ='\\blahblah.se\Väg'
addpath(genpath(Program_folder))
I get the following error when I run the program - Undefined function or variable 'Program_folder'.
If I manually enter on the command line Program_folder ='\\blahblah.se\Väg' and then comment out that line in the m-file then the program works fine.
I even have plots where I use the special characters in the title and they are also replaced with ? when the program runs.
This program has worked with my old computer which was running an older version of matlab so it is either the new release of matlab (R2019a) or the new computer that is causing the problem.
I have seen that other people have had a similar problem but was not able to apply the same fixes with setenv or feature('DefaultCharacterSet'), so if that is the solution then please tell me specifically how I should use the commands to fix the problem.

回答(1 个)

Parag Jhunjhunwala
I have tried running the commands in the latest version of MATLAB(R2023a) editor and it doesn't produce any error for me.
Program_folder ='\\blahblah.se\Väg'
Program_folder = '\\blahblah.se\Väg'
addpath(genpath(Program_folder))

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by