inttrans
invfourier
inverse Fourier transform
Calling Sequence
Parameters
Description
Examples
Compatibility
invfourier(expr, w, t)
expr
-
expression, equation, or set of equations and/or expressions to be transformed
w
variable expr is transformed with respect to w
t
parameter of transform
opt
option to run this under (optional)
The invfourier function computes the inverse fourier transform (f(t)) of expr (F(w)) with respect to w, using the definition
f⁡t=∫−∞∞F⁡w⁢ⅇI⁢t⁢wⅆw2⁢π
Expressions involving exponentials, polynomials, trigonometrics (sin, cos) and a variety of functions and other integral transforms can be transformed.
The invfourier function recognizes derivatives (diff or Diff) and integrals (int or Int).
Users can define the transforms of their own functions by using the function addtable.
The program first attempts to classify the function simply, from the lookup table. Then it considers various cases, including a piecewise decomposition, products, powers, sums, and rational polynomials. Finally, if all other methods fail, the program will resort to integration. If the option opt is set to 'NO_INT', then the program will not integrate. This will increase the speed at which the transform will run.
The command with(inttrans,invfourier) allows the use of the abbreviated form of this command.
with⁡inttrans:
invfourier⁡fourier⁡f⁡x,x,w,w,x−2
f⁡x−2
invfourier⁡31+t2,t,w
3⁢Heaviside⁡w⁢ⅇ−w2+3⁢ⅇw⁢Heaviside⁡−w2
invfourier⁡t⁢exp⁡−3⁢t⁢Heaviside⁡t,t,w
12⁢I⁢w−32⁢π
invfourier⁡14−I⁢t13,t,w
3⁢Γ⁡23⁢ⅇ4⁢w⁢Heaviside⁡−w2⁢−w23⁢π
addtable⁡fourier,myfunc⁡t,Myfunc⁡s,t,s:
invfourier⁡myfunc⁡w,w,t
Myfunc⁡−t2⁢π
The inttrans[invfourier] command was updated in Maple 2019.
See Also
dsolve
inttrans[addtable]
inttrans[fourier]
Download Help Document