共用方式為


TensorPrimitives.Product 方法

定義

多載

Product(ReadOnlySpan<Single>)

計算指定之單精度浮點數之非空白張量中的所有元素乘積。

Product<T>(ReadOnlySpan<T>)

計算指定之非空白數位張量中的所有元素乘積。

Product(ReadOnlySpan<Single>)

來源:
TensorPrimitives.cs
來源:
TensorPrimitives.Single.cs
來源:
TensorPrimitives.Single.cs

計算指定之單精度浮點數之非空白張量中的所有元素乘積。

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

參數

x
ReadOnlySpan<Single>

以範圍表示的張量。

傳回

x中相乘所有項目的結果。

例外狀況

x 長度必須大於零。

備註

如果任何輸入值等於 NaN,則結果值也是 NaN。

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於

Product<T>(ReadOnlySpan<T>)

來源:
TensorPrimitives.Product.cs
來源:
TensorPrimitives.Product.cs

計算指定之非空白數位張量中的所有元素乘積。

public:
generic <typename T>
 where T : System::Numerics::IMultiplyOperators<T, T, T>, System::Numerics::IMultiplicativeIdentity<T, T> static T Product(ReadOnlySpan<T> x);
public static T Product<T> (ReadOnlySpan<T> x) where T : System.Numerics.IMultiplyOperators<T,T,T>, System.Numerics.IMultiplicativeIdentity<T,T>;
static member Product : ReadOnlySpan<'T (requires 'T :> System.Numerics.IMultiplyOperators<'T, 'T, 'T> and 'T :> System.Numerics.IMultiplicativeIdentity<'T, 'T>)> -> 'T (requires 'T :> System.Numerics.IMultiplyOperators<'T, 'T, 'T> and 'T :> System.Numerics.IMultiplicativeIdentity<'T, 'T>)
Public Shared Function Product(Of T As {IMultiplyOperators(Of T, T, T), IMultiplicativeIdentity(Of T, T)}) (x As ReadOnlySpan(Of T)) As T

類型參數

T

參數

x
ReadOnlySpan<T>

以範圍表示的張量。

傳回

T

x中相乘所有項目的結果。

例外狀況

x 長度必須大於零。

備註

如果任何輸入值等於 NaN,則結果值也是 NaN。

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於