Appends the given element to this vector.

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

Syntax

C#
public DoubleComplexVector Append(
	DoubleComplex x
)
Visual Basic (Declaration)
Public Function Append ( _
	x As DoubleComplex _
) As DoubleComplexVector
Visual C++
public:
DoubleComplexVector^ Append(
	DoubleComplex x
)

Parameters

x
Type: CenterSpace.NMath.Core..::.DoubleComplex
The element to append.

Return Value

A reference to self.

Remarks

A new vector is allocated and data is copied.

See Also