| VectorDSetSubvector Method |
Sets a subvector of this instance.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public void SetSubvector(
int startIndex,
VectorD subvector
)
Public Sub SetSubvector (
startIndex As Integer,
subvector As VectorD
)
public:
void SetSubvector(
int startIndex,
VectorD^ subvector
)
member SetSubvector :
startIndex : int *
subvector : VectorD -> unit
Parameters
- startIndex
- Type: SystemInt32
The start index. - subvector
- Type: DigitalRune.Mathematics.AlgebraVectorD
The subvector.
Exceptions Remarks
The elements of the subvector are copied into this vector, beginning at the
startIndex.
See Also