Laplace Transform of f(t)=Cos[5t-45^°]

17 views (last 30 days)
Salik Mallick
Salik Mallick on 15 Sep 2020
Edited: David on 15 Sep 2020
%% Problem P2_(Quiz1)
display('Problem P2_(Quiz1)')
syms S D f t;
D = rad2deg(-pi/4);
f = cos(5*t+D);
S = laplace(f)
  2 Comments
BOB MATHEW SYJI
BOB MATHEW SYJI on 15 Sep 2020
Can you please elaborate the question
Walter Roberson
Walter Roberson on 15 Sep 2020
Are you sure you want D to be in degrees? cos() expects radians.

Sign in to comment.

Accepted Answer

Ameer Hamza
Ameer Hamza on 15 Sep 2020
Edited: Ameer Hamza on 15 Sep 2020
Making a code complex just for the sake of it is a pointless question, especially for this forum. However, the following code shows an alternate method to calculate Laplace transform using its definition
syms s t;
assume(real(s) > 0);
D = rad2deg(-pi/4);
f = cos(5*t+D);
S = int(f*exp(-s*t), t, 0, inf)

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!