TensorPrimitives.Reciprocal<T> Yöntem

Tanım

Belirtilen tensordaki sayıların öğe açısından karşılıklısını hesaplar.

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

Tür Parametreleri

T

Parametreler

x
ReadOnlySpan<T>

Bir yayılma alanı olarak temsil edilen tensor.

destination
Span<T>

Hedef tensor, bir yayılma alanı olarak temsil edilir.

Özel durumlar

x ve destination çakışan bellek konumlarını başvurur ve aynı konumda başlamaz.

T bir tamsayı türüdür ve x içindeki bir öğe sıfıra eşittir.

Açıklamalar

Bu yöntem destination[i] = 1 / x[i]etkili bir şekilde hesaplar.

Şunlara uygulanır