How to transfer a .m file in another folder
1 view (last 30 days)
Show older comments
Hello everyone!
I've got one simple question (yet I struggle to get through it) : I'm working with .m files that requires themselves others .m files functions to work. So, everything is in a folder A and it's working great. But if I create a folder B inside of A, and put every scripts on B, it doesn't work anymore. And yes, I've changed the "current folder" to B before starting those scripts. I can't find any solutions to this problem. I'd be grateful if someone could help! :)
Thanks in advance!
0 Comments
Answers (1)
Walter Roberson
on 29 Mar 2019
Add folder B to the MATLAB path. You will not need to cd to there.
3 Comments
Stephen23
on 29 Mar 2019
Edited: Stephen23
on 31 Mar 2019
The search path is simply a list of directories where MATLAB will look for functions:https://www.mathworks.com/help/matlab/matlab_env/what-is-the-matlab-search-path.html
You can add directories to the search path using the interactive tools from the main menu:
or using addpath:
For a more detailed discussion on the MATLAB search path:
See Also
Categories
Find more on File Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!