Constructs a data block that references the elements in a given array, beginning from the specified offset into the array.

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

Syntax

C#
public FloatDataBlock(
	float[] data,
	int offset
)
Visual Basic (Declaration)
Public Sub New ( _
	data As Single(), _
	offset As Integer _
)
Visual C++
public:
FloatDataBlock(
	array<float>^ data, 
	int offset
)

Parameters

data
Type: array< System..::.Single >[]()[]
An array of floating point numbers to be referenced.
offset
Type: System..::.Int32
The beginning index.

See Also