hilbert - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


inttrans

  

hilbert

  

Hilbert transform

  

invhilbert

  

inverse Hilbert transform

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

hilbert(expr, t, s)

invhilbert(expr, t, s)

Parameters

expr

-

expression, equation, or set of expressions and/or equations to be transformed

t

-

variable expr is transformed with respect to t

s

-

parameter of transform

opt

-

option to run this under (optional)

Description

• 

The hilbert function performs a Hilbert transform, a linear transformation from CRCR defined by the Principal Value integral:

Fs=fttsⅆtπ

• 

Expressions involving exponentials, rational polynomials, trigonometrics (sin, cos) with linear arguments, and a variety of other functions can be transformed.

• 

The hilbert function can transform derivatives (diff or Diff) of functions and differential equations, and can be used to simplify some classes of ODEs and PDEs.  It is often used in conjunction with the fourier transform.

  

Note: invhilbert(f(t), t, s) = -hilbert(f(t), t, s), that is, the inverse Hilbert transform of a function is the negative of the Hilbert transform of that function.

  

Note: The Hilbert transform is defined by the Cauchy Principal Value integral described above, so the transform of some classes of functions is zero--most notably the constant function, and any rational function in which the degree of the numerator is less than or equal to the degree of the denominator, and the denominator contains only real simple roots. See the first four examples below.

• 

The hilbert function attempts to simplify an expression according to a set of heuristics and then match the result with a table of patterns.  Entries can be added to this table by addtable(hilbert, f(t), F(s), t, s), where F(s) is the transform of f(t), which may have an arbitrary number of parameters.

• 

hilbert recognizes the Dirac-delta (or unit-impulse) function as Dirac(t) and Heaviside's unit step function as Heaviside(t).

• 

If the option opt is set to 'NO_INT', then the program will not resort to integration of the original problem if all other methods fail.  This will increase the speed at which the transform will run.

• 

The command with(inttrans,hilbert) allows the use of the abbreviated form of this command.

Examples

withinttrans:

Note that the transforms of constant functions, and rational functions that have numerator degree less than or equal to denominator degree and denominators with real simple roots, are zero.

hilbertπ,r,z

0

(1)

hilbertrrv1rv2,r,zassumingv1,real,v2,real

0

(2)

Also note that expressions in which the denominator has non-simple real roots cannot be transformed.

hilbert1rv12,r,zassumingv1,real

1rv12,r,z

(3)

In the case that the denominator roots are complex, there is a nonzero (purely imaginary) transform.

hilbert1rv1,r,zassumingv10

−IcsgnIv1z+v1

(4)

Other examples:

hilbertfu,u,t

fu,u,t

(5)

hilbert,t,s

fs

(6)

hilberttft,t,s

s`?`π+f_Uⅆ_Uπ

(7)

hilbertdiffgx,x,x,y

gxxy,x,y

(8)

assume0<a

hilberttt2+a2&comma;t&comma;s

a~a~2+s2

(9)

hilbertsint&comma;t&comma;s

coss

(10)

hilbertsin7xx&comma;x&comma;y2

cos7y141y2

(11)

hilbertexpIax&comma;x&comma;y

I&ExponentialE;Iya~

(12)

hilbert&comma;y&comma;z

&ExponentialE;Iza~

(13)

invhilbert&comma;y&comma;z

&ExponentialE;Iza~

(14)

Add an entry to the table

addtablehilbert&comma;fx&comma;Fy&comma;x&comma;y&colon;

hilbertft&comma;t&comma;s

Fs

(15)

See Also

dsolve

inttrans

inttrans[addtable]