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

Online Help

All Products    Maple    MapleSim


Heaviside

Heaviside step function

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Heaviside(x)

Parameters

x

-

algebraic expression understood to be real

Description

• 

The Heaviside function is the step function,

0x<0undefinedx=010<x

  

where x is understood to be real. Regarding the value of Heaviside at 0, Maple implements the following convention: Heaviside(0) returns undefined and signals the invalid_operation numeric event. You can change this behavior by catching this event. For details, see NumericEvent and the Examples section below.

• 

The Heaviside function is also the anti-derivative of Dirac in that

&DifferentialD;&DifferentialD;xHeavisidex=Diracx

• 

The Heaviside and Dirac functions are frequently used in the context of integral transforms, for example, laplace, mellin, or fourier, or in formulations involving differential equation solutions. These functions are also particularly relevant in Theoretical Physics, for example in Quantum Mechanics.

• 

When converting Heaviside to piecewise you may want to have the conversion performed taking Heaviside(0) = 1. For that purpose set the Environment Variable _EnvUseHeavisideAsUnitStep to true - see the example in the next section.

Examples

diffHeavisidex&comma;x

Diracx

(1)

Heaviside4

1

(2)

Heaviside24

0

(3)

By default, the value of Heaviside at zero is undefined.

Heaviside0

undefined

(4)

Convert the Heaviside function to a piecewise function.

convertHeavisidex&comma;piecewise

0x<0undefinedx=010<x

(5)

3Heavisidex

3Heavisidex

(6)

convert3Heavisidex&comma;piecewise

0x<0undefinedx=030<x

(7)

convertintHeavisidex&comma;x&comma;piecewise

0x<0undefinedx=0x0<x

(8)

To perform this conversion taking Heaviside(0) = 1 you can set a related handler.

NumericEventHandlerinvalid_operation=`Heaviside/EventHandler`value_at_zero=1&colon;

Heaviside0

1

(9)

Heavisidex=convertHeavisidex&comma;piecewise

Heavisidex=0x<010x

(10)

To set the value of Heaviside(0) to 12 or any other numerical value, replace 1 by this value in the NumericEventHandler input line above. The invalid_operation event handler can be reset as follows.

NumericEventHandlerinvalid_operation=default&colon;

Heaviside0

undefined

(11)

For the particular case of computing with Heaviside representing a unit step, that is Heaviside(0) = 1, an alternative to setting a handler is to set the value of the Environment variable as seen below.

_EnvUseHeavisideAsUnitSteptrue

_EnvUseHeavisideAsUnitSteptrue

(12)

Heaviside0

1

(13)

_EnvUseHeavisideAsUnitStep_EnvUseHeavisideAsUnitStep

_EnvUseHeavisideAsUnitStep_EnvUseHeavisideAsUnitStep

(14)

Heaviside0

undefined

(15)

See Also

convert/piecewise

Dirac

inttrans[fourier]

inttrans[laplace]

inttrans[mellin]

NumericEvent