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

18 Ansichten (letzte 30 Tage)
Salik Mallick
Salik Mallick am 15 Sep. 2020
Bearbeitet: David am 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 Kommentare
BOB MATHEW SYJI
BOB MATHEW SYJI am 15 Sep. 2020
Can you please elaborate the question
Walter Roberson
Walter Roberson am 15 Sep. 2020
Are you sure you want D to be in degrees? cos() expects radians.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 15 Sep. 2020
Bearbeitet: Ameer Hamza am 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)

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by