Click or drag to resize

DoubleComplexMatrix(DoubleMatrix, DoubleMatrix) Constructor

Constructs a DoubleComplexMatrix instance from a matrix of real parts and a matrix of imaginary parts.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleComplexMatrix(
	DoubleMatrix A,
	DoubleMatrix B
)

Parameters

A  DoubleMatrix
A matrix of real numbers.
B  DoubleMatrix
A matrix of imaginary numbers.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the two matrices do not have the same dimensions.
Remarks
Copies the data.
See Also