필터 지우기
필터 지우기

Redirect output of MATLAB verbose function

조회 수: 6 (최근 30일)
Yoav
Yoav 2023년 12월 17일
답변: Walter Roberson 2023년 12월 17일
I'm writing an app which involves the `fminbnd()` function. The function is a bit slow (takes several seconds to complete) so I want to print status updates to the user. Naturally, I set the `'Display'` option of `fminbnd()` to `'iter-detailed'`, which is the intended solution.
When running the app from MATLAB (i.e. the `.mlapp` file) the verbose output of the function can be easily seen by looking at the console in MATLAB itself. Unfortunately, the users will get a standalone app, without the console. So, the verbose output will be hidden from them.
Is there a way to display the output of the function in a textbox (or any other way) visible to the users of a standalone MATLAB app?
Thanks a lot!

답변 (1개)

Walter Roberson
Walter Roberson 2023년 12월 17일
fminbnd() supports optimset() options, including OutputFcn and PlotFcn .
So you can program a PlotFcn -- which will be called with an initialization phase, and a update phase, and a close-down phase.

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by