How to change the default path by using command?
显示 更早的评论
Dear all,
I want change the default path to my project-document when MATLAB is starting, so that I need not to change it manually every time when I use the software.
Anyone know that how to do it? Can I finish it by the command?
Thanks a lot~~~
采纳的回答
更多回答(1 个)
Image Analyst
2012-8-21
0 个投票
You can edit your startup.m file and put a cd command in there to change the starting "Current folder" - that's what I do. I change it from time to time as I concentrate on different projects.
2 个评论
tqy
2012-8-21
Image Analyst
2012-8-21
No. Type startup into the help and see what it says. Basically, see what folder MATLAB puts you in when you first start it. Then create a file called startup.m in that folder, and then place your call to cd() in there.
cd('C:\wherever');
类别
在 帮助中心 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!