| Contents | Index |
laplace(F) laplace(F, t) laplace(F, w, z)
L = laplace(F) computes the Laplace transform of the symbolic expression F. This syntax assumes that F is a function of the variable t, and the returned value L as a function of s.
![]()
If F = F(s), laplace returns a function of t.
L = L(t)
By definition, the Laplace transform is
![]()
L = laplace(F,t) computes the Laplace transform L as a function of t instead of the default variable s.
![]()
L = laplace(F,w,z) computes the Laplace transform L and lets you specify that L is a function of z and F is a function of w.
![]()
Laplace Transform | MATLAB Command |
|---|---|
f(t) = t4
| syms t f = t^4; laplace(f) returns ans = 24/s^5 |
| syms s g = 1/sqrt(s); laplace(g) returns ans = pi^(1/2)/t^(1/2) |
f(t) = e–at
| syms t a x f = exp(-a*t); laplace(f,x) returns ans = 1/(a + x) |

See how symbolic computations can help you find analytical solutions to math and engineering problems.
Get free kit| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |