|
VectorInterval Method (UInt64, UInt64)
|
Creates an interval vector (like NumPy's linspace function).
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static ulong[] Interval(
ulong a,
ulong b
)
Public Shared Function Interval (
a As ULong,
b As ULong
) As ULong()
Request Example
View SourceParameters
- a
- Type: SystemUInt64
- b
- Type: SystemUInt64
Return Value
Type:
UInt64Remarks
The Range methods should be equivalent to NumPy's np.linspace function. For
a similar method that accepts a step size instead of a number of steps, see
Range(Int32, Int32).
See Also