Constructs a new indexed vector.
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Version4x.Net40 (in Extreme.Numerics.Version4x.Net40.dll) Version: 4.2.11333.0 (5.0.12317.0)
public SingleIndexedVector(
int length,
float[] data,
int[] indexes,
int offset,
int stride
)
Public Sub New (
length As Integer,
data As Single(),
indexes As Integer(),
offset As Integer,
stride As Integer
)
public:
SingleIndexedVector(
int length,
array<float>^ data,
array<int>^ indexes,
int offset,
int stride
)
new :
length : int *
data : float32[] *
indexes : int[] *
offset : int *
stride : int -> SingleIndexedVector
Parameters
- length
- Type: SystemInt32
The length of the vector. - data
- Type: SystemSingle
A Double array containing the data for the vector. - indexes
- Type: SystemInt32
An Int32 array containing the indexes into data
of the components of the vector. - offset
- Type: SystemInt32
Offset into indexes where the index of the first component
is stored. - stride
- Type: SystemInt32
The increment for the index into indexes.
Numerical Libraries
Supported in: 5.x, 4.x
Reference