Click or drag to resize

FloatComplexMatrix(FloatMatrix, FloatMatrix) Constructor

Constructs a FloatComplexMatrix 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 FloatComplexMatrix(
	FloatMatrix A,
	FloatMatrix B
)

Parameters

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