Click or drag to resize

DoubleMatrix(DataRowCollection) Constructor

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