Returns the Heaviside step function.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static double Step(
double x0,
double x
)
Public Shared Function Step (
x0 As Double,
x As Double
) As Double
public:
static double Step(
double x0,
double x
)
static member Step :
x0 : float *
x : float -> float
Parameters
- x0
- Type: SystemDouble
The first value where the step function is nonzero. - x
- Type: SystemDouble
A real number.
Return Value
Type:
Double1 if
x is greater than or equal to
x0;
otherwise 0.
Reference