r*******y 发帖数: 1081 | 1 执行完毕以后总是出来这几句:
Optimization completed because the size of the gradient at the initial point
is less than the default value of the function tolerance.
有没有办法不让这几句出现?谢谢。难道还必须去修改fminunc.m吗?
谢谢 |
N***m 发帖数: 4460 | 2 warning off all
point
【在 r*******y 的大作中提到】 : 执行完毕以后总是出来这几句: : Optimization completed because the size of the gradient at the initial point : is less than the default value of the function tolerance. : : 有没有办法不让这几句出现?谢谢。难道还必须去修改fminunc.m吗? : 谢谢
|
r*******y 发帖数: 1081 | 3 那些不是 warning.
warning off all了也没用
【在 N***m 的大作中提到】 : warning off all : : point
|
m*********s 发帖数: 368 | 4 help 一下这个函数
一般的话, 这些话都是一个返回值
表示这个函数的执行结果
用这样的格式调用
[a,b] = fminunc(...)
b就把这些话个吃掉而不显示出来了
point
【在 r*******y 的大作中提到】 : 执行完毕以后总是出来这几句: : Optimization completed because the size of the gradient at the initial point : is less than the default value of the function tolerance. : : 有没有办法不让这几句出现?谢谢。难道还必须去修改fminunc.m吗? : 谢谢
|
l********a 发帖数: 1154 | 5 Optimization completed because the size of the gradient at the initial point
is less than the default value of the function tolerance.
优化结束,因为初始点的梯度尺寸小于函数容限的默认值
结束啦 |
l*****a 发帖数: 119 | 6 fminunc是判断FOC的 初始点的导数太接近0了 所以算法觉得初始点就是最优解 停
止了 |