Show live output from API
2 次查看(过去 30 天)
显示 更早的评论
I'm executing an .m script from C++ API (matlabEval). Unfortunately, I can't see the output until the script (e.g. one that calls fmincon) finishes, which can be quite a while. diary or the -log command line param don't do the trick. Guys, you must do something about this. If I'm connected to a matlab session through the API, which modifies the workspace, and commands can't be executed, there's no reason that I won't see a live output in the command window like executing the command from there.
0 个评论
回答(1 个)
Image Analyst
2014-7-6
Call "drawnow" whenever you want the display to update/refresh. Sometimes it gets into such an intensive loop that it never gets time to update the display unless you force it to with drawnow.
2 个评论
Image Analyst
2014-7-7
Well, I don't know. I have not run a C++ program that runs MATLAB mex file that does stuff in a console window.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Performance and Memory 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!