Creating a diary that is not appended to an existing one.
조회 수: 16 (최근 30일)
이전 댓글 표시
채택된 답변
Dave
2017년 11월 9일
To have the diary name with the date and time when starting use this command:
diary(['gd_diary_',datestr(now,'dd-mm-yy','local'),'_',datestr(now,'hh-MM-ss','local'),'.txt'])
댓글 수: 0
추가 답변 (2개)
WAT
2015년 9월 30일
if (exist(filename))
delete(filename);
end
댓글 수: 4
Walter Roberson
2015년 10월 5일
I would speculate that at the time you delete() that the current directory is no longer the same directory you created the diary in. Remember that it is always safer to fully-qualify file names.
Walter Roberson
2015년 9월 30일
댓글 수: 3
Walter Roberson
2015년 9월 30일
Xiaodi
2017년 9월 3일
I guess, before you delete mydiary.out file, you must
diary off
to close the diary process and then maybe you can delete this mydiary.out file, which is created by
diary('mydiary.out')
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!