Click or drag to resize

GenericVectorTGetSubVector Method

Returns a subvector of this vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public GenericVector<T> GetSubVector(
	int startElement,
	int endElement
)

Parameters

startElement  Int32
Return data starting from this element.
endElement  Int32
Return data ending in this element.

Return Value

GenericVectorT
A subvector of this vector.
Exceptions
ExceptionCondition
ArgumentExceptionException thrown if is greater than
ArgumentOutOfRangeExceptionException thrown if input dimensions are out of the range of FloatVector dimensions
See Also