How does the Matlab Compiler 'logfile' option handle the file?
조회 수: 7 (최근 30일)
이전 댓글 표시
when using the command:
mcc -R '-logfile,Log.txt' Main.m
It seems that information is added to the Log.txt file every time an fprintf() or disp() command is run. Does this mean that the file is opened, written to, and closed for each command?
댓글 수: 0
답변 (1개)
Puru Kathuria
2021년 2월 2일
Yes, it captures everything from the command window and saves the resulting log to the mentioned log file.
For each execution where logging is enabled, the underlying operation performs opening, writing and closing the log file.
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Compiler에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!