共用方式為


TensorPrimitives.IndexOfMax 方法

定義

多載

IndexOfMax(ReadOnlySpan<Single>)

在指定的張量中搜尋最大單精度浮點數的索引。

IndexOfMax<T>(ReadOnlySpan<T>)

搜尋指定之張量中最大數位的索引。

IndexOfMax(ReadOnlySpan<Single>)

來源:
TensorPrimitives.cs
來源:
TensorPrimitives.Single.cs
來源:
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

參數

x
ReadOnlySpan<Single>

以範圍表示的張量。

傳回

x中最大專案的索引,如果 x 是空的,則為 -1。

備註

最大元素的判斷符合 IEEE 754:2019 'maximum' 函式。 如果有任何等於 NaN 的值存在,則會傳回第一個的索引。 正 0 被視為大於負 0。

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於

IndexOfMax<T>(ReadOnlySpan<T>)

來源:
TensorPrimitives.IndexOfMax.cs
來源:
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

類型參數

T

參數

x
ReadOnlySpan<T>

以範圍表示的張量。

傳回

x中最大專案的索引,如果 x 是空的,則為 -1。

備註

最大元素的判斷符合 IEEE 754:2019 'maximum' 函式。 如果有任何等於 NaN 的值存在,則會傳回第一個的索引。 正 0 被視為大於負 0。

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於