Click or drag to resize

DoubleComplexVector(DoubleVector, DoubleVector) Constructor

Constructs a DoubleComplexVector instance from a vector of real parts and a vector of imaginary parts.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleComplexVector(
	DoubleVector real,
	DoubleVector imag
)

Parameters

real  DoubleVector
A vector of real numbers.
imag  DoubleVector
A vector of imaginary numbers.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if vectors are not of the same length.
Remarks
Copies the data.
See Also