DiscreteIntervalFromEndpoints Method |
Instantiates a new discrete interval from the given endpoints.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static DiscreteInterval FromEndpoints(
int a,
int b
)
Public Shared Function FromEndpoints (
a As Integer,
b As Integer
) As DiscreteInterval
public:
static DiscreteInterval FromEndpoints(
int a,
int b
)
static member FromEndpoints :
a : int *
b : int -> DiscreteInterval
Parameters
- a
- Type: SystemInt32
One endpoint. - b
- Type: SystemInt32
The other endpoint.
Return Value
Type:
DiscreteIntervalA discrete interval between the given endpoints.
See Also