VectorMathElementsAtT(T, Int32) Method |
Extracts the elements at the specified indices from the array.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static T[] ElementsAt<T>(
this T[] array,
int[] indices
)
Parameters
- array T
- The source array.
- indices Int32
- The indices of the elements to extract.
Type Parameters
- T
- The type of the array elements.
Return Value
TAn array containing the extracted elements.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
T. 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