Find the laplace transform of the piece wise function

9 views (last 30 days)
This isn't necessarily a matlab question but, I have to find the laplace transform of
f(t) { 0 when t <pi
t-pi when pi<=t<2pi
0 when t >= 2pi

Answers (2)

Walter Roberson
Walter Roberson on 5 Aug 2015
  2 Comments
Sam
Sam on 5 Aug 2015
Is there anyway you would be able to post a solution that shows how to find the answer by hand?
Walter Roberson
Walter Roberson on 5 Aug 2015
evalin(symengine, 'laplace(piecewise([t < Pi, 0], [Pi <= t, t-Pi], [t < 2*Pi, 0]),t,s)')

Sign in to comment.


Torsten
Torsten on 5 Aug 2015
  2 Comments
Walter Roberson
Walter Roberson on 5 Aug 2015
This does not appear to have taken into account the piecewise nature of the function ? The result I find using a different package is exp(-Pi*s)/s^2

Sign in to comment.

Categories

Find more on Interpolation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!