Constructs a DoubleComplexVector instance from the contents of the given array.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public DoubleComplexVector(
	params DoubleComplex[] data
)
Visual Basic (Declaration)
Public Sub New ( _
	ParamArray data As DoubleComplex() _
)
Visual C++
public:
DoubleComplexVector(
	... array<DoubleComplex>^ data
)

Parameters

data
Type: array< CenterSpace.NMath.Core..::.DoubleComplex >[]()[]
An array of DoubleComplex numbers.

Remarks

Copies the data.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.NMathExceptionThrown if passed invalid data.

See Also