Edit

Share via


TensorPrimitives.IndexOfMax Method

Definition

Overloads

IndexOfMax(ReadOnlySpan<Single>)
IndexOfMax<T>(ReadOnlySpan<T>)

IndexOfMax(ReadOnlySpan<Single>)

Source:
TensorPrimitives.cs
Source:
TensorPrimitives.Single.cs
Source:
TensorPrimitives.Single.cs
public:
 static int IndexOfMax(ReadOnlySpan<float> x);
public static int IndexOfMax (ReadOnlySpan<float> x);
static member IndexOfMax : ReadOnlySpan<single> -> int
Public Shared Function IndexOfMax (x As ReadOnlySpan(Of Single)) As Integer

Parameters

Returns

Applies to

IndexOfMax<T>(ReadOnlySpan<T>)

Source:
TensorPrimitives.IndexOfMax.cs
Source:
TensorPrimitives.IndexOfMax.cs
public:
generic <typename T>
 where T : System::Numerics::INumber<T> static int IndexOfMax(ReadOnlySpan<T> x);
public static int IndexOfMax<T> (ReadOnlySpan<T> x) where T : System.Numerics.INumber<T>;
static member IndexOfMax : ReadOnlySpan<'T (requires 'T :> System.Numerics.INumber<'T>)> -> int (requires 'T :> System.Numerics.INumber<'T>)
Public Shared Function IndexOfMax(Of T As INumber(Of T)) (x As ReadOnlySpan(Of T)) As Integer

Type Parameters

T

Parameters

Returns

Applies to