Appends the given vector to this vector.

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

Syntax

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

Parameters

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

Return Value

A reference to self.

Remarks

A new vector is allocated and data is copied.

See Also