Click or drag to resize

FloatComplexVector(DataRow, DataRow) Constructor

Constructs a FloatComplexVector instance from two data row arrays. The real parts are specified with the first column of the first data row array, and the imaginary parts by the first column of the second data row array.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FloatComplexVector(
	DataRow[] reals,
	DataRow[] imags
)

Parameters

reals  DataRow
A data row array of real parts.
imags  DataRow
A data row array of imaginary parts.
Exceptions
ExceptionCondition
InvalidCastExceptionThrown if either of the passed tables has a value that cannot be cast to a single-precision number.
MismatchedSizeExceptionThrown if row arrays do not have the same number of rows.
Remarks
All values must be able to be converted to a float through a cast.
See Also