Click or drag to resize

VectorMathToVector(Int32, Int32) Method

Wraps an array to get an IVectorT.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static IVector<int> ToVector(
	int[] array,
	int usedlength
)

Parameters

array  Int32
The array to wrap.
usedlength  Int32
Used length of the array to get the wrapped vector (i.e. the vector wraps around array[0..usedLength-1]).

Return Value

IVectorInt32
A wrapper objects with the IVectorT interface that wraps the provided array.
See Also