Click or drag to resize

DoubleComplexMatrix(DataTable, DataTable) Constructor

Constructs a DoubleComplexMatrix instance from the data tables. The real parts are specified with the first data table, and the imaginary parts by the second data table.

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

Parameters

reals  DataTable
A data table of real parts.
imags  DataTable
A data table 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 the two data tables do not have the same dimensions.
Remarks
The resulting matrix has the same number of rows and columns as each of the specified data tables. All values must be able to be converted to a double through a cast.
See Also