Tensor Back End.Cumulative Product In Place<T> Method
Computes the cumulative product of the elements of a tensor in place.
Definition
Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.1
C#
This tensor with the elements replaced with their cumulative product along the dimension axis.
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.1
public virtual Tensor<T> CumulativeProductInPlace<T>(
Tensor<T> value,
Index axis,
Tensor<bool>? mask = null
)
Parameters
- value Tensor<T>
- A tensor.
- axis Index
- The axis along which the transformation is computed.
- mask Tensor<Boolean> (Optional)
- Optional. A boolean tensor that specifies whether the operation should be performed at the location. If omitted, the operation is performed everywhere.
Type Parameters
- T
- The type of the elements of the tensor.
Return Value
Tensor<T>This tensor with the elements replaced with their cumulative product along the dimension axis.
Exceptions
Argument | value is null. |