MATLAB: How to run demo file in matlab

demoinsulin

i have typed the below command in command window
edit insulindemo
but i am getting the below error
Error using cd
Cannot CD to C:\Users\Rajan\AppData\Local\Temp (Name is nonexistent or not a directory).
Error in tempdir (line 30)
curr_dir = cd(tmp_dir);
Error in tempname (line 17)
dirname = tempdir;
Error in sbioloadproject>createMATFile (line 164)
tempfilename = [tempname '.mat'];
Error in sbioloadproject (line 83)
tempfilename = createMATFile(projfilename, 'simbiodata\d*.mat');
Error in insulindemo (line 85)
sbioloadproject('insulindemo', 'm1'
how to get out of these? help me plzz…

Best Answer

At the MATLAB command prompt, command
if ~exist('C:\Users\Rajan\AppData', 'dir'); mkdir('C:\Users\Rajan\AppData'); end
if ~exist('C:\Users\Rajan\AppData\Local', 'dir'); mkdir('C:\Users\Rajan\AppData\Local'); end
if ~exist('C:\Users\Rajan\AppData\Local\Temp', 'dir'); mkdir('C:\Users\Rajan\AppData\Local\Temp'); end
After that you should be able to use the software.