Community Profile

photo

Geraint Bevan


Last seen: 1 month ago Active since 2019

Followers: 0   Following: 0

Statistics

  • Thankful Level 1
  • First Answer

View badges

Feeds

View by

Question


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 years ago | 1 answer | 0

1

answer

Answered
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 ago | 2