共用方式為


TensorPrimitives.ReciprocalEstimate<T> 方法

定義

計算指定張量中的數字專案對等。

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

類型參數

T

參數

x
ReadOnlySpan<T>

以範圍表示的張量。

destination
Span<T>

目的地張量,以範圍表示。

例外狀況

xdestination 參考重疊的記憶體位置,而且不會從相同的位置開始。

T 是整數類型,x 中的專案等於零。

備註

這個方法會有效地計算 destination[i] = 1 / x[i]

適用於