how to run demo file in matlab

조회 수: 9 (최근 30일)
divya
divya 2016년 2월 12일
댓글: Walter Roberson 2016년 2월 13일
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...
  댓글 수: 1
divya
divya 2016년 2월 13일
@image analyst pop up appears when i changed line 17...and says access is denied.

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2016년 2월 12일
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.
  댓글 수: 7
divya
divya 2016년 2월 13일
kudossssss...solved ....just run matlab as administrator
Walter Roberson
Walter Roberson 2016년 2월 13일
Could you show the output of
T=getenv('TEMP');
fprintf('|%s|\n', T);
T+0

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Search Path에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by