|
VectorInterval Method (Byte, Byte, Int32, Boolean)
|
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 byte[] Interval(
byte a,
byte b,
int steps,
bool includeLast = true
)
Public Shared Function Interval (
a As Byte,
b As Byte,
steps As Integer,
Optional includeLast As Boolean = true
) As Byte()
Request Example
View SourceParameters
- a
- Type: SystemByte
- b
- Type: SystemByte
- steps
- Type: SystemInt32
- includeLast (Optional)
- Type: SystemBoolean
Return Value
Type:
ByteRemarks
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