Click or drag to resize

DoubleComplexVector(DataRowCollection, DataRowCollection) Constructor

Constructs a DoubleComplexVector instance from two data row collections. The real parts are specified with the first column of the first data row collection, and the imaginary parts by the first column of the second data row collection.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleComplexVector(
	DataRowCollection reals,
	DataRowCollection imags
)

Parameters

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