- 87
- 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)
您可能关注的文档
最近下载
- 标准图集-04S531-4 湿陷性黄土地区给水阀门井.pdf VIP
- 中国女性性功能障碍诊治专家共识(2026).docx
- JJF_2235-2025_永磁式磁场源校准规范(2025年实施新规范).pdf VIP
- 职业技术学校《食品雕刻与菜肴装饰技术》课程标准.pdf VIP
- 2025年泰州市事业单位考试综合知识和能力素质试题及答案.docx VIP
- 2022届高考小说重点词句含义专练.docx VIP
- 危重患者疼痛观察工具(CPOT)使用指南.docx VIP
- ISO15614-1:2017(中文版)【国际标准】.pdf VIP
- 2026年农业十一月农业科技推广方案.docx VIP
- 2026年环境保护工程实施方案.docx VIP
原创力文档

文档评论(0)