matlab polyfit源码,MATLAB的拟合函数polyfit 的程序代码是什么啊

本文介绍了MATLAB中用于多项式拟合的函数`polyfit`的源码,详细讲解了其内部实现机制,包括Vandermonde矩阵的构造、QR分解以及最小二乘问题的求解。此外,还提到了对于重复或接近重复数据点的警告以及中心化和标准化对数值稳定性的影响。
摘要由CSDN通过智能技术生成

polyfit.m 在MATLAB安装目录下 \toolbox\matlab\polyfun

function [p,S,mu] = polyfit(x,y,n)

%POLYFIT Fit polynomial to data.

% P = POLYFIT(X,Y,N) finds the coefficients of a polynomial P(X) of

% degree N that fits the data Y best in a least-squares sense.P is a

% row vector of length N+1 containing the polynomial coefficients in

% descending powers,P(1)*X^N + P(2)*X^(N-1) +...+ P(N)*X + P(N+1).

%

% [P,S] = POLYFIT(X,Y,N) returns the polynomial coefficients P and a

% structure S for use with POLYVAL to obtain error estimates for

% predictions.S contains fields for the triangular factor (R) from a QR

% decomposition of the Vandermonde matrix of X,the degrees of freedom

% (df),and the norm of the residuals (normr).If the data Y are random,

% an estimate of the covariance matrix of P is (Rinv*Rinv')*normr^2/df,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值