Click or drag to resize

FloatMatrix(DataRow) Constructor

Constructs a FloatMatrix instance whose values are derived from the entire contents of the given array of rows.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatMatrix(
	DataRow[] rows
)

Parameters

rows  DataRow
A row array.
Exceptions
ExceptionCondition
InvalidCastExceptionThrown if the passed array of rows has a value that cannot be cast to a single-precision number.
Remarks
Each row in the resulting matrix is initialized with the values in a row in the given array of rows. All values must be able to be converted to a float through a cast.
See Also