Appends the given vector to this vector.

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

Syntax

C#
public FloatComplexVector Append(
	FloatComplexVector v
)
Visual Basic (Declaration)
Public Function Append ( _
	v As FloatComplexVector _
) As FloatComplexVector
Visual C++
public:
FloatComplexVector^ Append(
	FloatComplexVector^ v
)

Parameters

v
Type: CenterSpace.NMath.Core..::.FloatComplexVector
The vector to append.

Return Value

A reference to self.

Remarks

A new vector is allocated and data is copied.

See Also