summaryrefslogtreecommitdiff
path: root/257/CH3/EX3.1/example_3_1.sce
blob: 25746735ed6dbe69d5da2b92863991fb778291d5 (plain)
1
2
3
4
5
6
7
8
//applying KVL we have Vi(t) = R*i(t) + 1/C * int(i(t)) dt
//                     Vo(t) = 1/C * int(i(t)) dt

syms s R C I
Vi= R*I + I/(s*C)   
Vo = I/(C*s)

disp(Vo/Vi,"transfer function=")