Tried Googling, but couldn t find anything.
I have a few files and folders in my current MATLAB folder.
One of those folders is called Map and it has a map1.m file which I want to call from my code in the current MATLAB folder.
In my code, I can t call it like this:
/Map/map1;
但我可以这样做:
cd Map;
map1;
cd ..;
不知怎么的,上面的方法似乎不正确。有更优雅的方法吗?