Community Profile

photo

Geraint Bevan


Last seen: 約1ヶ月 前 2019 年からアクティブ

Followers: 0   Following: 0

統計

  • Thankful Level 1
  • First Answer

バッジを表示

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+...

4年以上 前 | 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...

5年弱 前 | 2