| VectorDGetSubvector Method |
Gets a subvector of this vector.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public VectorD GetSubvector(
int startIndex,
int subvectorLength
)
Public Function GetSubvector (
startIndex As Integer,
subvectorLength As Integer
) As VectorD
public:
VectorD^ GetSubvector(
int startIndex,
int subvectorLength
)
member GetSubvector :
startIndex : int *
subvectorLength : int -> VectorD
Parameters
- startIndex
- Type: SystemInt32
The index of the first element of the subvector. - subvectorLength
- Type: SystemInt32
The length of the subvector.
Return Value
Type:
VectorDThe subvector.
Exceptions See Also