Array2D<T>.Diagonal Method

Returns an array slice that corresponds to a column in the array.

Definition

Namespace: Numerics.NET.Collections
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public ArraySlice<T> Diagonal(
	int index
)

Parameters

index  Int32
The distance of the diagonal from the main diagonal. Positive values are above the main diagonal. Negative values are below.

Return Value

ArraySlice<T>
An array slice that starts at the first element in the diagonal.

Implements

IStorage2D<T, TSlice, TStorage2D>.Diagonal(Int32)

See Also