How do I use matlab on two computers and load files (located in different file locations) in my script?
13 次查看(过去 30 天)
显示 更早的评论
I plan to use matlab in my school's computer lab. At home, I'll use Matlab on my own computer. I use dropbox to store and access my files from different computers. Sometimes I need to load a file into my matlab script. My problem is: if I use both the school's and my own computer, my files will be in two different file locations; I will need to change the matlab code each time I work at school and at home. What can I do? Thanks.
P.S. I could bring my laptop to school and do all my matlab assignments on my laptop. I'd rather not, because my laptop is heavy and might get stolen or damaged during my science labs.
0 个评论
回答(2 个)
Daniel Shub
2014-9-5
There are lots of ways to tackle this problem. From the OS level, if you are not using Windows, you can create mount points and symbolic links so that the files are in the same place. From within MATLAB you could switch the file location based on the hostname:
switch upper(char(java.net.InetAddress.getLocalHost.getHostName))
case 'MYLAPTOPNAME'
disp('Likely my laptop');
dropBoxLocation = '/home/myname/work';
case 'MYDESKTOPNAME'
disp('Likely my desktop');
dropBoxLocation = '/home/myname/stuff';
otherwise
disp('Some unknown computer');
dropBoxLocation = '/home/myunilogin/';
end
You could of course switch off of ip address, mac address, MATLAB license, or anything else that varies with the machines.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Software Development Tools 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!