1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| help ilaplace --- sym/ilaplace에 대한 도움말 ---
ilaplace Inverse Laplace transform. F = ilaplace(L) is the inverse Laplace transform of the sym L with default independent variable s. The default return is a function of t. If L = L(t), then ilaplace returns a function of x: F = F(x). By definition, F(t) = int(L(s)*exp(s*t),s,c-i*inf,c+i*inf) where c is a real number selected so that all singularities of L(s) are to the left of the line s = c, i = sqrt(-1), and the integration is taken with respect to s. F = ilaplace(L,y) makes F a function of y instead of the default t: ilaplace(L,y) <=> F(y) = int(L(y)*exp(s*y),s,c-i*inf,c+i*inf). F = ilaplace(L,y,x) makes F a function of x instead of the default t: ilaplace(L,y,x) <=> F(y) = int(L(y)*exp(x*y),y,c-i*inf,c+i*inf), integration is taken with respect to y. Examples: syms s t w x y f(x) ilaplace(1/(s-1)) returns exp(t) ilaplace(1/(t^2+1)) returns sin(x) ilaplace(t^(-5/2),x) returns (4*x^(3/2))/(3*pi^(1/2)) ilaplace(y/(y^2 + w^2),y,x) returns cos(w*x) ilaplace(laplace(f(x),x,s),s,x) returns f(x)
|