资源简介
可与随机减量技术及自然激励技术结合用于模态参数识别
代码片段和文件信息
function [ABCD]=era(hnNTsdef);
% Eigensystem Realization Algorithm (ERA)
%
% Author: Samuel da Silva - UNICAMP
% e-mail: samsilva@fem.unicamp.br
% Date: 2006/10/20
%
% [ABCD]=era(hnNTsdef);
%
% Inputs:
% h: discrete-time impulse response
% n: order of the system
% N: number of samples to assembly the Hankel matrix
% Ts: sample time
% def: if = 1: the output will be the discrete-time state-space model
% if = 2: the output will be the continuous-time state-space model
%
% Otputs:
% [ABCD]: state-space model
%
% Note: For now it works to SISO systems and it is necessary the control toolbox
%
% References: Juang J. N. and Phan M. Q. “Identification and Control of
% Mechanical Systems“ Cambridge University Press 2001
% Hankel matrix
H0 = hankel(h(2:N+1)); % k = 0
H1 = hankel(h(3:N+2)); % k = 1;
% Factorization of the Hankel matrix by use of SVD
[RSigmaS] = svd(H0);
% R and S are orthonormal and Sigma is a rectangular matrix
Sigman = Sigma(1:n1:n);
Wo = R(:1:n)*Sigman^0.5; % observability matrix
Co = Sigman^.5*S(:1:n)‘; % controllability matrix
% The identified system matrix are:
A = Sigman^-.5*R(:1:n)‘*H1*S(:1:n)*Sigman^-.5; % dynamic matrix
B = Co(:1); % input matrix
C = Wo(1:); % output matrix
D = h(1); % direct-transmission matrix
sysdisc = ss(ABCDTs); % discrete-time system
if def == 2
syscont = d2c(sysdisc‘zoh‘); % Conversion of discrete LTI models to continuous time
[ABCD]=ssdata(syscont); % continuous system
end
%--------------------------------------------------------------------------
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1840 2018-07-11 20:25 era.m
- 上一篇:泰课Unity3D基础班视频教程
- 下一篇:intel hex 校验和计算工具
相关资源
- 图像处理实验DPCM
- faster_rcnn-master 直接运行即可,重新编
- LOF算法实现
- LDPC_802.16e仿真代码
- LMS算法和NLMS算法的性能比较
- 助力特性曲线三维图
- 协同训练的一个小
- m_map使用小结——非常实用
- NSGA-2源程序可以运行
- 图论软件包
- 医学图像配准
- GSA算法源程序
- contourlet代码
- 图像栅格化处理
- 计算机图形学实验报告及代码2
- HDL-Coder详细教程
- 老外编的kriging插值
- 雷达中的微多普勒效应 程序代码
- SAR图像变化检测方法,包括了对数比
- 矩量法计算线天线辐射方向图
- 车间调度算法
- 非局部均值滤波
- 直流微网建模,母线电压200V,改进下
- 自校正PID控制算法
- relief算法的代码实现
- 斯皮尔曼的等级相关系数
- 互信息的计算
- Zernike矩亚像素边缘检测
- 相位展开传统算法
- 倾斜haar-like feature计算
评论
共有 条评论