How to generate a report using workspace variables in an .exe?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
I wrote a code to analyse some files and I would like to generate a report at the end with my results.
To create my report, I used the Matlab Report Generator. My report is calling some variables contained in my workspace with the following syntax :
%<myVariable>
When I run my code, everything goes well and the report is correctly generated. Perfect! However, if I compile my code, with the following command
mcc -m myCode.m
and that I run the .exe, the report is not able to use the variables contained in the workspace anymore.
Do you have any idea of what could cause my problem? I'm using the R2009a Matlab version.
Thank, Antoine
댓글 수: 2
Walter Roberson
2014년 2월 2일
Which workspace are they in? I have seen some information suggesting that the base workspace does not exist for compiled executables; I do not know if that is accurate.
답변 (1개)
Paul Kinnucan
2016년 5월 13일
Compiled executables do have a global work space. The Report Generator's computed property value feature, %<MATLAB EXPRESSION>, does work in compiled applications. We need more information to determine why your compiled application failed.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!