Click or drag to resize

VectorMathRotate(Int32, Int32) Method

Shifts the element of this vector by moving them from index i to index i+increment. The elements at the end of the vector are wrapped back to the start of the vector. Thus, effectively, the elements of the vector are rotated.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void Rotate(
	this int[] vector,
	int increment
)

Parameters

vector  Int32
The vector to rotate.
increment  Int32
Offset value.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Int32. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also