在Matlab中实现最速下降

时间:2017-03-03 06:10:49

标签: matlab gradient-descent

我必须使用Matlab实现最速下降方法并在两个变量的函数上进行测试。这是我到目前为止所做的:

x_0 = [0;1.5]; %Initial guess
alpha = 1.5; %Step size
iteration_max = 10000;
tolerance = 10e-10;

% Two anonymous function to compute 1st and 2nd entry of gradient
f = @(x,y) (cos(y) * exp(-(x-pi)^2 - (y-pi)^2) * (sin(x) - 2*cos(x)*(pi-x)));
g = @(x,y) (cos(x) * exp(-(x-pi)^2 - (y-pi)^2) * (sin(y) - 2*cos(y)*(pi-y)));

%Initiliazation
iter = 0;
grad = [1; 1]; %Gradient

while (norm(grad,2) >= tolerance)
    grad(1,1) = f(x_0(1), x_0(2));
    grad(2,1) = g(x_0(1), x_0(2));
    x_new = x_0 - alpha * grad; %New solution
    x_0 = x_new %Update old solution
    iter = iter + 1;

    if iter > iter_max
        break
    end
end

问题在于,与WolframAlpha的结果相比,我没有获得相同的值。对于这个特殊的功能,我应该获得(3.14,3.14)或(1.3,1.3),但我得到(0.03,1.4)。

1 个答案:

答案 0 :(得分:0)

您应该知道此方法是本地搜索,因此它可能会陷入局部最小值,具体取决于初始猜测和步长。

  • 使用不同的初始猜测,它会找到不同的局部最小值。

  • 步长非常重要,因为大步长可以防止算法收敛。一个小步长使算法真的很慢。这就是为什么你应该在函数值减小时调整步长的大小。

通过绘制它(如果可能)来理解要优化的功能总是一个好主意。您正在使用的功能如下所示(范围[-pi pi]):

enter image description here

使用以下参数值,您将获得所需的本地最小值。

x_0 = [2;2]; %Initial guess
alpha = 0.5; %Step size