Constructs a FloatVector instance with the specifed length, stride and referenced data.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public FloatVector(
	FloatDataBlock block,
	int length,
	int stride
)
Visual Basic (Declaration)
Public Sub New ( _
	block As FloatDataBlock, _
	length As Integer, _
	stride As Integer _
)
Visual C++
public:
FloatVector(
	FloatDataBlock^ block, 
	int length, 
	int stride
)

Parameters

block
Type: CenterSpace.NMath.Core..::.FloatDataBlock
The data to reference.
length
Type: System..::.Int32
A non-negative value for the length.
stride
Type: System..::.Int32
Distance between vector elements in the data.

See Also