フィルターのクリア

simulate State Space system with lsim

18 ビュー (過去 30 日間)
Anthony Sirico
Anthony Sirico 2021 年 2 月 4 日
回答済み: Star Strider 2021 年 2 月 4 日
A = [0 1 0 0; 0 0 1 0; 0 0 0 1; -2 -5 -7 -2];
B = [0; 0; 0; 1];
C = [1 3 0 0];
D = 0;
t = 10;
sys = ss(A,B,C,D);
x0 = [1 1 1 1];
u = exp(-0.3*t)*sin(t);
lsim(sys, u, t)
grid
I was given this ss system, but it keeps returning:
Error using DynamicSystem/lsim (line 97)
When simulating the response to a specific input signal, the input data U must be a matrix of numeric values with at least two
rows (samples) and without any NaN or Inf.
Error in HW2_2b (line 15)
lsim(sys, u, t)
Any ideas?

採用された回答

Star Strider
Star Strider 2021 年 2 月 4 日
For a SISO system, ‘t’ needs to be a vector:
t = linspace(0,10);
the full code being:
A = [0 1 0 0; 0 0 1 0; 0 0 0 1; -2 -5 -7 -2];
B = [0; 0; 0; 1];
C = [1 3 0 0];
D = 0;
t = linspace(0,10);
sys = ss(A,B,C,D);
x0 = [1 1 1 1];
u = exp(-0.3*t).*sin(2*pi*t);
lsim(sys, u, t)
grid
Create ‘t’ to be whatever you want.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTime and Frequency Domain Analysis についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by