gxc8208 发表于 2007-5-25 09:28

请问lsim这个函数怎么用?

请问lsim这个函数怎么用?
我求解的是多自由度受迫振动系统,不知道用这个函数能否仿真?请高手指教!!!谢谢了!!

DUMBO 发表于 2011-4-13 14:24

回复 1 # gxc8208 的帖子

doc lsim

meiyongyuandeze 发表于 2011-4-13 15:19

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]
查看完整版本: 请问lsim这个函数怎么用?