unable to exit matlab program

9 ビュー (過去 30 日間)
Rui Zhang
Rui Zhang 2021 年 5 月 10 日
回答済み: Walter Roberson 2021 年 5 月 10 日
In the MATLAB command window, I typed "exit", trying to quit the MATLAB program. But I can't. I got an error message like:
>> exit
Exiting MATLAB ...
Error using csvwrite (line 47)
Cannot open file c:\Users\Public\Documents\matlabusage\finishindicator.csv.
Error in usagelog (line 54)
csvwrite([localpath '\finishindicator.csv'],[1 2 3]);
Error in finish (line 37)
usagelog('finish');
It looks like a script is called when leaving the MATLAB command window. I don't know how to find it out and change/disable it.
Thanks.

採用された回答

Walter Roberson
Walter Roberson 2021 年 5 月 10 日
Use
which finish
to locate the user script that is being invoked.
In the meantime, you could
mkdir('c:\Users\Public\Documents\matlabusage')
to create the directory so that the usage information could be written into it. (usagelog is not something provided by Mathworks, by the way.)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by