⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dio.m

📁 基于神经网络的控制工具箱
💻 M
字号:
function [R,S,T] = dio(A,B,d,Am,Bm,Ao,Ar,As);
% DIO
% ---
%       This function represents the interface to the generic diophantine
%       equation solver DIOPHANT.
%
%       CALL [R,S,T] = dio(A,B,d,Am,Bm,Ao,Ar,As);
%  
%       The system to be controlled is described by y(t)=(B/A)u(t-d)
%       The controller is: u(t) = (T*ref(t) - S*y(t))/R
%       The desired model is ym(t)=(Bm/Am)ref(t-d)
%       Ao is the oberserver polynomial while Ar and As represent terms
%       to be forced into R and S, respectively

% Copyright Magnus Norgaard, IAU/IMM, Technical University of Denmark
% LastEditDate Aug. 20, 1996
AmAo = conv(Am,Ao);
AAr  = conv(A,Ar);
BAs  = conv(B,As);

[R,S]=diophant(AAr,BAs,d,AmAo);

R = conv(R,Ar);
S = conv(S,As);
T = conv(Bm,Ao);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -