共用方式為


TensorPrimitives.ScaleB<T> 方法

定義

計算指定張量中數字的專案乘積,以及其基底基底向指定的乘冪。

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

類型參數

T

參數

x
ReadOnlySpan<T>

以範圍表示的張量。

n
Int32

以純量表示的基底基底基數在乘法 x 之前所引發的值。

destination
Span<T>

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

例外狀況

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

備註

這個方法會有效地計算 destination[i] = T.ILogB(x[i])

適用於