Click or drag to resize

FloatMatrix(DataRowCollection) Constructor

Constructs a FloatMatrix instance whose values are derived from the entire contents of the given row collection.

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

Parameters

rows  DataRowCollection
A row collection.
Exceptions
ExceptionCondition
InvalidCastExceptionThrown if the passed row collection 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 row collection. All values must be able to be converted to a float through a cast.
See Also