Click or drag to resize

DoubleMatrix(DataRow) Constructor

Constructs a DoubleMatrix 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 DoubleMatrix(
	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 double-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 double through a cast.
See Also