diary, how to create a new one
조회 수: 9 (최근 30일)
이전 댓글 표시
I have a .m file I want to save the text at the command window. Next time I run the m-file I want to create a new diary file. This however seem to be problematic. I try to save the diary with a new filename but I get the message that the file doesn't exist.
Any idea how to solve this?
댓글 수: 0
채택된 답변
Mohammad Abouali
2014년 10월 16일
편집: Mohammad Abouali
2014년 10월 16일
could you paste the value for savdir and ['file_',mfilename,myFolder(53:end),'diary.txt']?
also execute fullfile(savdir,['file_',mfilename,myFolder(53:end),'diary.txt']) and check if that runs ok.
댓글 수: 0
추가 답변 (2개)
Dave
2017년 11월 9일
Automatic date and time append:
diary(['diary_',datestr(now,'dd-mm-yy','local'),'_',datestr(now,'hh-MM-ss','local'),'.txt'])
댓글 수: 0
Sean de Wolski
2014년 10월 16일
Pass diary a filename
댓글 수: 2
Sean de Wolski
2014년 10월 16일
Well I have no clue what those variables are do I don't know what it means. What happens if you put a breakpoint on that line and print the output from fullfile
참고 항목
카테고리
Help Center 및 File Exchange에서 Scope Variables and Generate Names에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!