TensorPrimitives.IndexOfMaxMagnitude 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
IndexOfMaxMagnitude(ReadOnlySpan<Single>) |
搜尋單精度浮點數的索引,其大小在指定的張量中最大。 |
IndexOfMaxMagnitude<T>(ReadOnlySpan<T>) |
搜尋在指定張量中具有最大大小的數字索引。 |
IndexOfMaxMagnitude(ReadOnlySpan<Single>)
搜尋單精度浮點數的索引,其大小在指定的張量中最大。
public:
static int IndexOfMaxMagnitude(ReadOnlySpan<float> x);
public static int IndexOfMaxMagnitude (ReadOnlySpan<float> x);
static member IndexOfMaxMagnitude : ReadOnlySpan<single> -> int
Public Shared Function IndexOfMaxMagnitude (x As ReadOnlySpan(Of Single)) As Integer
參數
以範圍表示的張量。
傳回
x
中具有最大大小(絕對值)的專案索引,如果 x
是空的,則為 -1。
備註
最大大小判斷符合 IEEE 754:2019 'maximumMagnitude' 函式。 如果有任何等於 NaN 的值存在,則會傳回第一個的索引。 如果兩個值具有相同的大小,一個是正值,另一個是負值,則正值會被視為具有較大的大小。
這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。
適用於
IndexOfMaxMagnitude<T>(ReadOnlySpan<T>)
搜尋在指定張量中具有最大大小的數字索引。
public:
generic <typename T>
where T : System::Numerics::INumber<T> static int IndexOfMaxMagnitude(ReadOnlySpan<T> x);
public static int IndexOfMaxMagnitude<T> (ReadOnlySpan<T> x) where T : System.Numerics.INumber<T>;
static member IndexOfMaxMagnitude : ReadOnlySpan<'T (requires 'T :> System.Numerics.INumber<'T>)> -> int (requires 'T :> System.Numerics.INumber<'T>)
Public Shared Function IndexOfMaxMagnitude(Of T As INumber(Of T)) (x As ReadOnlySpan(Of T)) As Integer
類型參數
- T
參數
以範圍表示的張量。
傳回
x
中具有最大大小(絕對值)的專案索引,如果 x
是空的,則為 -1。
備註
最大大小判斷符合 IEEE 754:2019 'maximumMagnitude' 函式。 如果有任何等於 NaN 的值存在,則會傳回第一個的索引。 如果兩個值具有相同的大小,一個是正值,另一個是負值,則正值會被視為具有較大的大小。
這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。