the final result of laplace transform still contain laplace function?

조회 수: 1 (최근 30일)
Ziying Huang
Ziying Huang 2021년 3월 12일
댓글: Ziying Huang 2021년 3월 15일
here is the original code
I intend to transform it to frequency domain using laplace function.
but the final answer still contain laplace function
can somebody tell me why?
really appreciated!

답변 (1개)

David Goodmanson
David Goodmanson 2021년 3월 12일
편집: David Goodmanson 2021년 3월 12일
Hello ZH
Matlab doesn't know if taoc is positive or negative. If taoc is negative, the calculation can't really be done. That's because the standard laplace transform assumes f(t) = 0 for negative t, and if taoc is negative, the heaviside function goes into negative t. Assuming w0 is positive, then
clear
syms t vdd s w0
syms taoc positive
v = (1-cos(w0*t))*(heaviside(t)-heaviside(t-taoc));
Z = laplace(v,t,s)
Z = subs(Z,taoc,10*pi/w0)
Z =
exp(-(10*pi*s)/w0)*(s/(s^2 + w0^2) - 1/s) - s/(s^2 + w0^2) + 1/s
I left out a couple of constants for simplicity's sake. Since taoc is an exact multiple of pi, the answer is simpler than it would be otherwise.

카테고리

Help CenterFile Exchange에서 Number Theory에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by