%Experiment No.6 %Aim: To Study and perform magnitude and phase response of LTI continuous %time System using Laplace transform %Name: Anurag R Kados %Roll NO.: EC2162 %Batch No.: A-5 %Class: SY-A syms t; f=4*sin(5*t) Lt=laplace(f) %code-2 syms t; f=cos(3*t)+cos(t) Lt=laplace(f) %code-3 syms t; f=cos(t)+cos(3*t) f=cos(3*t)+cos(t) Lt=laplace(f)
f = 4*sin(5*t) Lt = 20/(s^2 + 25) f = cos(3*t) + cos(t) Lt = s/(s^2 + 1) + s/(s^2 + 9) f = cos(3*t) + cos(t) f = cos(3*t) + cos(t) Lt = s/(s^2 + 1) + s/(s^2 + 9)