- 84
- 0
- 约2.91千字
- 约 5页
- 2017-12-17 发布于河南
- 举报
ARARX模型的辨识算法
Homework
Recursive extended least squares identification
In this section, I focus on the following ARMAX model
where {} and {} are respectively input and output series, is white noise, and are some polynomials with respect to the backward operator :
, , and for t ≤ 0.
I use the residual based recursive extened least squares algorithm.
The procedure of MATLAB:
clc;clear all;
t=500;
for k=1:t
u(k)=1;
end
v=randn(1,t)/100;
y(1)=v(1);y(2)=1.5*y(1)+0.5*u(1)+v(2)-v(1);
y(3)=1.5*y(2)-0.7*y(1)+0.5*u(1)+u(2)+v(3)-v(2)+0.2*v(1);
for k=4:t
y(k)=1.5*y(k-1)-0.7*y(k-2)+u(k-1)+0.5*u(k-2)+v(k)
您可能关注的文档
最近下载
- 捷豹空压机电脑控制器说明书.pdf VIP
- 国开一体化平台01714《行政领导学》形考任务(1-4)试题及答案.docx VIP
- 小学科技1986年04期.pdf VIP
- 2026年低压电工理论知识考试试卷及答案(共三套).docx
- 2025年拍卖师拍卖行业客户关系管理与服务提升专题试卷及解析.pdf VIP
- 2025年金融风险管理师外汇储备管理与币种结构决策专题试卷及解析.pdf VIP
- 2025年演出经纪人国际演出绿色环保演出专题试卷及解析.pdf VIP
- 安徽事业单位联考c类真题及答案2025.doc VIP
- 2025年通信工程师光纤衰减过大与色散问题故障排查专题试卷及解析.pdf VIP
- 2025年特许金融分析师另类投资业绩衡量与基准选择专题试卷及解析.pdf VIP
原创力文档

文档评论(0)