Appends the given element to this vector.

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

Syntax

C#
public FloatVector Append(
	float x
)
Visual Basic (Declaration)
Public Function Append ( _
	x As Single _
) As FloatVector
Visual C++
public:
FloatVector^ Append(
	float x
)

Parameters

x
Type: System..::.Single
The element to append.

Return Value

A reference to self.

Remarks

A new vector is allocated and data is copied.

See Also