Windows script does not run under macOS Monterey

6 views (last 30 days)
I have a new MacBook Pro M1 2020 with 16GB of memory and I want to run a MATLAB script on it. This script was programmed under WINDOWS and runs there. On my Mac it shows an error in the path.
I have already tried to change the path, but the problem still exists.
Is there a solution that you can switch unhindered between Windows script and Mac script in MATLAB?

Accepted Answer

Rik
Rik on 10 Dec 2021
It looks like you are mixing \ and /, which might cause issues.
In general you should use filesep or fullfile to create a path out of component folder names. Also, cd is almost never needed. Most functions can be handed a full or relative path and can read files just fine. Using cd forces Matlab to check the new folder for functions and to check if any of the previously cached functions should be reloaded because the function precedence might have changed as a result.
  2 Comments
Bianca Dickel
Bianca Dickel on 16 Dec 2021
Thank you very much. i have \ and / adjusted. After that comes this error.
can not you just fix the problem with a toolbox or something? Because now i have to customize the whole script to run on mac.
Walter Roberson
Walter Roberson on 16 Dec 2021
You get that message when file_info is an empty struct -- you did a dir() that returned no results.

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!