Tensor.Product<T>(ReadOnlyTensorSpan<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Computes the product of all elements in the specified non-empty tensor of numbers.
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> % x);
public static T Product<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) 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 x As ReadOnlyTensorSpan(Of T)) As T
Type Parameters
- T
Parameters
The input ReadOnlyTensorSpan<T>.
Returns
T
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.