Activating Matlab on a lab computer:
user: ehnewman@iu.edu
pass: Information_17 (be sure to capitalize the 'I')
To get most scripts working on a new computer, add the following folders to path:
Using "Add with subfolders. . ."
Dropbox/scripts/Utils << then remove all folders with CVS in the name from path for maximal performance >>
Using "Add Folder. . ."
Dropbox/scripts/DownloadedScripts/FMAtoolbox/General
Dropbox/Bill/CMBHOME_stable
Documents/MATLAB
Add the following two scripts to your matlab root folder (this is usually in someplace like C:/Users/NewmanMemoryLab/Documents/MATLAB)
First, in Matlab, create a new script, paste the following:
function [dbp] = dropboxPath()
dbp = fullfile('G:','Dropbox (NewmanLab)');
Now update the text you just pasted so that it matches where Dropbox is actually located on your computer. Finally, save it as 'DropboxPath.m' in the matlab root folder.
Second, in Matlab, create a new script, paste the following:
function [rlp] = ratLibPath()
rlp = fullfile(DropboxPath,'ratsEphys');
Now save it as 'ratLibPath.m' in the matlab root folder.