フィルターのクリア

How does this matlab function works?

1 回表示 (過去 30 日間)
Priya
Priya 2014 年 1 月 27 日
コメント済み: Azzi Abdelmalek 2014 年 1 月 27 日
If I give an input delay of 0.1350 to the state space system, it doesn't make any difference to the system's response
ss_model=ss(A,B,C,D,'InputDelay',0.1350)
Someone please explain how this function works or in what cases, this function fits in exactly.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2014 年 1 月 27 日
編集済み: Azzi Abdelmalek 2014 年 1 月 27 日
This is not true
%-----------------model without delay-----------
A=[-11 1;-10 0];B=[0;1];C=[1 0];D=0;
ss_model1=ss(A,B,C,D)
subplot(2,1,1);
step(ss_model1)
%-----------------model wit delay----------------
retard=2
subplot(2,1,2);
ss_model2=ss(A,B,C,D,'InputDelay',retard)
step(ss_model2)
  2 件のコメント
Priya
Priya 2014 年 1 月 27 日
Thank you. But can you please tell me what would be the command if the delay is being given to the second input signal .
Azzi Abdelmalek
Azzi Abdelmalek 2014 年 1 月 27 日
Look at this MIMO system
A=[-11 1;-10 0];
B=[0 0;1 1];
C=[1 0;0 1];
D=zeros(2);
ss_model1=ss(A,B,C,D)
ss_model1.InputDelay(2)=2 % delay the second input
step(ss_model1)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by