Constructs a DoubleComplexVector instance with the given length, and all values initialized to the given value.

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

Syntax

C#
public DoubleComplexVector(
	int length,
	DoubleComplex initVal
)
Visual Basic (Declaration)
Public Sub New ( _
	length As Integer, _
	initVal As DoubleComplex _
)
Visual C++
public:
DoubleComplexVector(
	int length, 
	DoubleComplex initVal
)

Parameters

length
Type: System..::.Int32
A non-negative value for the length.
initVal
Type: CenterSpace.NMath.Core..::.DoubleComplex
An initial value.

See Also