LaplaceTransform | Laplace Transform |
LaplaceTransform(t,s,func) |
s -- independent variable that is being transformed into
f -- function
In> LaplaceTransform(t,s,2*t^5+ t^2/2 ) Out> 240/s^6+2/(2*s^3); In> LaplaceTransform(t,s,t*Sin(2*t)*Exp(-3*t) ) Out> (2*(s+3))/(2*(2*(((s+3)/2)^2+1))^2); In> LaplaceTransform(t,s, BesselJ(3,2*t) ) Out> (Sqrt((s/2)^2+1)-s/2)^3/(2*Sqrt((s/2)^2+1)); In> LaplaceTransform(t,s,Exp(t^2)); // not of exponential order Out> LaplaceTransform(t,s,Exp(t^2)); In> LaplaceTransform(p,q,Ln(p)) Out> -(gamma+Ln(q))/q; |