TensorPrimitives.IndexOfMinMagnitude Método

Definição

Sobrecargas

IndexOfMinMagnitude(ReadOnlySpan<Single>)

Pesquisa o índice do número de ponto flutuante de precisão única com a menor magnitude no tensor especificado.

IndexOfMinMagnitude<T>(ReadOnlySpan<T>)

Pesquisa o índice do número com a menor magnitude no tensor especificado.

IndexOfMinMagnitude(ReadOnlySpan<Single>)

Origem:
TensorPrimitives.cs
Origem:
TensorPrimitives.Single.cs
Origem:
TensorPrimitives.Single.cs

Pesquisa o índice do número de ponto flutuante de precisão única com a menor magnitude no tensor especificado.

public:
 static int IndexOfMinMagnitude(ReadOnlySpan<float> x);
public static int IndexOfMinMagnitude (ReadOnlySpan<float> x);
static member IndexOfMinMagnitude : ReadOnlySpan<single> -> int
Public Shared Function IndexOfMinMagnitude (x As ReadOnlySpan(Of Single)) As Integer

Parâmetros

x
ReadOnlySpan<Single>

O tensor, representado como um intervalo.

Retornos

O índice do elemento em x com a menor magnitude (valor absoluto) ou -1 se x estiver vazio.

Comentários

A determinação da magnitude mínima corresponde à função "minimumMagnitude" do IEEE 754:2019. Se qualquer valor igual a NaN estiver presente, o índice do primeiro será retornado. Se dois valores tiverem a mesma magnitude e um for positivo e o outro for negativo, o valor negativo será considerado com a magnitude menor.

Esse método pode chamar o runtime C subjacente ou empregar instruções específicas para a arquitetura atual. Os resultados exatos podem ser diferentes entre diferentes sistemas operacionais ou arquiteturas.

Aplica-se a

IndexOfMinMagnitude<T>(ReadOnlySpan<T>)

Origem:
TensorPrimitives.IndexOfMinMagnitude.cs
Origem:
TensorPrimitives.IndexOfMinMagnitude.cs

Pesquisa o índice do número com a menor magnitude no tensor especificado.

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

Parâmetros de tipo

T

Parâmetros

x
ReadOnlySpan<T>

O tensor, representado como um intervalo.

Retornos

O índice do elemento em x com a menor magnitude (valor absoluto) ou -1 se x estiver vazio.

Comentários

A determinação da magnitude mínima corresponde à função "minimumMagnitude" do IEEE 754:2019. Se qualquer valor igual ao NaN estiver presente, o índice do primeiro será retornado. Se dois valores tiverem a mesma magnitude e um for positivo e o outro for negativo, o valor negativo será considerado com a magnitude menor.

Esse método pode chamar o runtime C subjacente ou empregar instruções específicas para a arquitetura atual. Os resultados exatos podem ser diferentes entre diferentes sistemas operacionais ou arquiteturas.

Aplica-se a