Condividi tramite


TensorPrimitives.Hypot<T> Metodo

Definizione

Calcola l'ipotenusa per elemento in base ai valori di due tensori che rappresentano le lunghezze dei lati più corti in un triangolo con angolo destro.

public:
generic <typename T>
 where T : System::Numerics::IRootFunctions<T> static void Hypot(ReadOnlySpan<T> x, ReadOnlySpan<T> y, Span<T> destination);
public static void Hypot<T> (ReadOnlySpan<T> x, ReadOnlySpan<T> y, Span<T> destination) where T : System.Numerics.IRootFunctions<T>;
static member Hypot : ReadOnlySpan<'T (requires 'T :> System.Numerics.IRootFunctions<'T>)> * ReadOnlySpan<'T (requires 'T :> System.Numerics.IRootFunctions<'T>)> * Span<'T (requires 'T :> System.Numerics.IRootFunctions<'T>)> -> unit (requires 'T :> System.Numerics.IRootFunctions<'T>)
Public Shared Sub Hypot(Of T As IRootFunctions(Of T)) (x As ReadOnlySpan(Of T), y As ReadOnlySpan(Of T), destination As Span(Of T))

Parametri di tipo

T

Parametri

x
ReadOnlySpan<T>

Primo tensore, rappresentato come intervallo.

y
ReadOnlySpan<T>

Secondo tensore, rappresentato come intervallo.

destination
Span<T>

Tensore di destinazione, rappresentato come intervallo.

Eccezioni

y e destination fare riferimento a percorsi di memoria sovrapposti e non iniziano nella stessa posizione.

Commenti

Questo metodo calcola in modo efficace destination[i] = T.Hypot(x[i], x[i]).

Si applica a