Laplace Command
CAS Syntax
- Laplace( <Function> )
-
Returns the Laplace transform of the given function
Laplace(sin(t))
returns 1s2+1
- Laplace( <Function>, <Variable> )
-
Returns the Laplace transform of the function, with respect to the given variable.
Laplace(sin(a*t),t)
returns aa2+t2
Laplace(sin(a*t),a)
returns ta2+t2
See also InverseLaplace command. |