请问lsim这个函数怎么用?
请问lsim这个函数怎么用?我求解的是多自由度受迫振动系统,不知道用这个函数能否仿真?请高手指教!!!谢谢了!! 回复 1 # gxc8208 的帖子
doc lsim lsim(SYS, u) 计算/绘制系统SYS对输入向量u的响应 。假设要对一个LTI系统进行分析,系统的传递函数如下:
5s
H(s) = ---------------
s2 + 2s +101
clc;
clear;
num = ; %Define numerator polynomial
den = ; %Define denominator polynomial
t = linspace(0, 10, 401); %Define a time vector
u = cos(2*pi*t); %Compute the cosine input function
= lsim(num, den, u, t); %Compute the cosine input function
plot(t, y, 'r', t, u, 'b'); %Plot the output in red and the input in blue
xlabel('Time(s)');
ylabel('Amplitude');
页:
[1]