Edit

Share via


Tensor.Product Method

Definition

Overloads

Product<T>(ReadOnlyTensorSpan<T>)
Product<T>(Tensor<T>)

Product<T>(ReadOnlyTensorSpan<T>)

Source:
TensorExtensions.cs
public:
generic <typename T>
 where T : System::Numerics::IMultiplicativeIdentity<T, T>, System::Numerics::IMultiplyOperators<T, T, T> static T Product(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % input);
public static T Product<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> input) where T : System.Numerics.IMultiplicativeIdentity<T,T>, System.Numerics.IMultiplyOperators<T,T,T>;
static member Product : ReadOnlyTensorSpan -> 'T (requires 'T :> System.Numerics.IMultiplicativeIdentity<'T, 'T> and 'T :> System.Numerics.IMultiplyOperators<'T, 'T, 'T>)
Public Function Product(Of T As {IMultiplicativeIdentity(Of T, T), IMultiplyOperators(Of T, T, T)}) (ByRef input As ReadOnlyTensorSpan(Of T)) As T

Type Parameters

T

Parameters

Returns

T

Applies to

Product<T>(Tensor<T>)

Source:
TensorExtensions.cs
public:
generic <typename T>
 where T : System::Numerics::IMultiplicativeIdentity<T, T>, System::Numerics::IMultiplyOperators<T, T, T> static T Product(System::Numerics::Tensors::Tensor<T> ^ input);
public static T Product<T> (System.Numerics.Tensors.Tensor<T> input) where T : System.Numerics.IMultiplicativeIdentity<T,T>, System.Numerics.IMultiplyOperators<T,T,T>;
static member Product : System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.IMultiplicativeIdentity<'T, 'T> and 'T :> System.Numerics.IMultiplyOperators<'T, 'T, 'T>)> -> 'T (requires 'T :> System.Numerics.IMultiplicativeIdentity<'T, 'T> and 'T :> System.Numerics.IMultiplyOperators<'T, 'T, 'T>)
Public Function Product(Of T As {IMultiplicativeIdentity(Of T, T), IMultiplyOperators(Of T, T, T)}) (input As Tensor(Of T)) As T

Type Parameters

T

Parameters

input
Tensor<T>

Returns

T

Applies to