Click or drag to resize
Accord.NET (logo)

VectorInterval Method (Range, Int32)

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 float[] Interval(
	this Range range,
	int steps
)
Request Example View Source

Parameters

range
Type: AccordRange
steps
Type: SystemInt32

Return Value

Type: Single

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Range. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks

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