Matlab使用fminsearch最小化规范以查找系数

时间:2014-10-30 15:44:10

标签: matlab minimization norm fminsearch

我正在尝试使用最小化来计算多项式p(x) = 1 + c(1)x + c(2)x^2的系数以近似e^x。我需要对xi = 1 + i/n上的自然数i使用点[1,n],首先使用n=5,然后n=10,等等。方法是最小化{1 1}},2inf norm(p(x) - e^x)使用 fminsearch 。所以输出应该是3 p(x)的2个系数。任何建议都表示赞赏。

1 个答案:

答案 0 :(得分:0)

好吧,如果有人想知道,我最终确实想出了这个问题。

for l = [1 2 inf]
    fprintf('For norm %d\n', l)
    fprintf('Coefficients   c1        c2\n')
    for n = [5 10 100]
        i = 1:n ;
        x = 1 + i/n ;
        c = [1 1] ;

        %Difference function that we want to minimize
        g = @(c) x.*c(1) + x.^2.*c(2) + 1 - exp(x);
        f_norm = @(c) norm(g(c), l) ;
        C = fminsearch(f_norm, c);
        fprintf('n = %d      ', n)
        fprintf('%f    %f\n', C(1), C(2))
        % Compare plot of e^x and p(x).
        p = @(x) C(1)*x + C(2)*x.^2 + 1;
        xx = linspace(1,2,1e5);
        figure;
        plot(xx, p(xx), '--r', xx, exp(xx));
        str = sprintf('Plot with n = %d, for norm %d', n,l);
        title(str,'FontSize',24)
        xlabel('x','FontSize',20)
        ylabel('y','FontSize',20)
        legend('p2 approximation','exponential');
    end
end

这最终回答了这个问题。