Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 R 中使用 optimx 包来最小化函数的值。我想不时监控这个函数的值。但是函数 optimx 似乎只在整个过程完成后才输出一次结果。有没有简单的方法来实现这一目标?
将参数的trace组成部分设置control为正数以启用跟踪。
trace
control
optimx(...., control=list(trace=2))
这产生多少输出取决于您选择的方法,但通常数字越大,输出越多。