IntervalFromEndpointAndWidth Method |
Creates a new interval, given its lower endpoint and width.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public static Interval FromEndpointAndWidth(
double endpoint,
double width
)
Public Shared Function FromEndpointAndWidth (
endpoint As Double,
width As Double
) As Interval
public:
static Interval FromEndpointAndWidth(
double endpoint,
double width
)
static member FromEndpointAndWidth :
endpoint : float *
width : float -> Interval
Parameters
- endpoint
- Type: SystemDouble
The left (lower) endpoint of the interval. - width
- Type: SystemDouble
The width of the interval.
Return Value
Type:
IntervalThe specified interval.
See Also