我怎样才能看到"进展" matlab中的求解器?

时间:2015-04-21 22:06:57

标签: matlab

我有Matlab代码试图解决16个变量的160个样方系统。这花了很长时间,我想知道是否有某种方式“看电脑工作”?如果只是为了比观看空白命令行更美观。

谢谢!

1 个答案:

答案 0 :(得分:5)

这取决于您如何解决系统问题。如果您使用fsolve,那么您可以执行以下操作:

% Set options for the solver.
options = optimoptions('fsolve','Display','iter');

% Call the solver
[x,fval] = fsolve(@myfun,x0,options)

尝试使用help fsolve获取更多显示选项。