Click or drag to resize

FloatMatrix(DataView) Constructor

Constructs a FloatMatrix instance whose values are derived from the entire contents of the given data view.

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

Parameters

view  DataView
A data view.
Exceptions
ExceptionCondition
InvalidCastExceptionThrown if the passed view has a value that cannot be cast to a single-precision number.
Remarks
The resulting matrix has the same number of rows and columns as the data view. All values must be able to be converted to a float through a cast.
See Also