资源简介

matlab实现加权最小二乘拟合,经典的系统辨识方法

资源截图

代码片段和文件信息


% Example of cost function for demonstration of FWLSMM
% Cost function 
%   F(X) = |A*x - c|

% with x in R^2

function y = egCostFunc(x)

A = [0.5 4; -3 1.6; 9.5 -7.6; 0.9 -1.1];
c = [0.4; 2; -1.3; 1];

y = abs(A*x - c);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2008-09-12 21:31  WLS_MM\
     文件         241  2008-09-12 21:29  WLS_MM\egCostFunc.m
     文件         146  2008-09-12 21:30  WLS_MM\egNlcon.m
     文件        3619  2008-09-12 21:35  WLS_MM\fwlsmm.m
     文件         674  2008-09-12 21:31  WLS_MM\fwlsmm_demo.m

评论

共有 条评论