Geraint Bevan
Followers: 0 Following: 0
Feeds
提问
pzmap(G+G) produces incorrect plot
Given a system with 2 zeros and 5 poles: s = tf('s') G = 8.75*(4*s^2+0.4*s+1)/((s/0.01+1)*(s^2+0.24*s+1)*(s^2/100+2*0.02*s/10+...
5 years 前 | 1 个回答 | 0
1
个回答已回答
how to plot function with a sine input in Matlab (not in simulink)
Use the lsim function to apply an arbitrary input to a system. G = tf(1,[1,1]) t = [0:0.01:10] u = sin(t) [y,t] = lsim(G,u,t...
how to plot function with a sine input in Matlab (not in simulink)
Use the lsim function to apply an arbitrary input to a system. G = tf(1,[1,1]) t = [0:0.01:10] u = sin(t) [y,t] = lsim(G,u,t...
5 years 前 | 3