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
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.