主要内容

输入-输出多项式模型

输入-输出多项式模型,包括 ARX、ARMAX、输出-误差和博克斯-詹金斯模型结构

多项式模型使用广义的传递函数概念,通过以下形式的方程表达输入 u(t)、输出 y(t) 和噪声 e(t) 之间的关系:

A(q)y(t)=B(q)F(q)u(tnk)+C(q)D(q)e(t).

A(q)、B(q)、F(q)、C(q) 和 D(q) 是根据时移运算符 q-1 表示的多项式矩阵。u(t) 是输入,nk 是输入延迟。y(t) 是输出,e(t) 是扰动信号。

每个多项式都有一个独立的阶数,或者说可估计系数的数量。例如,如果 A(q) 的阶数为 2,则 A 多项式的形式为 A(q) = 1 + a1q-1 + a2q-2

实际上,并非所有多项式都同时有效。更简单的多项式形式,包括 ARX、ARMAX、输出-误差和博克斯-詹金斯模型,提供了适合特定目标的模型结构,例如处理非平稳扰动或为动态特性和噪声提供完全独立的参数化。有关这些模型类型的详细信息,请参阅What Are Polynomial Models?

App

系统辨识从测量数据辨识动态系统模型

函数

全部展开

idpolyPolynomial model with identifiable parameters
arx估计 ARX、ARIX、AR 或 ARI 模型的参数
armax使用时域数据估计 ARMAX、ARIMAX、ARMA 或 ARIMA 模型的参数
bjEstimate Box-Jenkins polynomial model using time-domain data
iv4ARX model estimation using four-stage instrumental variable method
ivxARX model estimation using instrumental variable method with arbitrary instruments
oeEstimate output-error polynomial model using time-domain or frequency-domain data
polyestEstimate polynomial model using time- or frequency-domain data
pemPrediction error minimization for refining linear and nonlinear models
arxstrucCompute loss functions for single-output ARX models
ivstrucCompute loss functions for sets of ARX model structures using instrumental variable method
selstrucSelect model order for single-output ARX models
struc为单输出 ARX 模型估计生成模型阶组合
arxRegulDetermine regularization constants for ARX model estimation
delayest根据数据估计时间延迟(死区时间)
initSet or randomize initial parameter values
polydataAccess polynomial coefficients and uncertainties of identified model
getpvecObtain model parameters and associated uncertainty data
setpvecModify values of model parameters
getparObtain attributes such as values and bounds of linear model parameters
setparSet attributes such as values and bounds of linear model parameters
setPolyFormatSpecify format for B and F polynomials of multi-input polynomial model
armaxOptionsOption set for armax
arxOptionsOption set for arx
arxRegulOptionsOption set for arxRegul
bjOptionsOption set for bj
iv4OptionsOption set for iv4
oeOptionsOption set for oe
polyestOptionsOption set for polyest

主题

多项式模型基础知识

估计多项式模型

设置多项式模型选项

精选示例