Cumprod
Source:R/gen-namespace-docs.R, R/gen-namespace-examples.R, R/gen-namespace.R
torch_cumprod.RdCumprod
Arguments
- self
(Tensor) the input tensor.
- dim
(int) the dimension to do the operation over
- dtype
(
torch.dtype, optional) the desired data type of returned tensor. If specified, the input tensor is casted todtypebefore the operation is performed. This is useful for preventing data type overflows. Default: NULL.
cumprod(input, dim, out=NULL, dtype=NULL) -> Tensor
Returns the cumulative product of elements of input in the dimension
dim.
For example, if input is a vector of size N, the result will also be
a vector of size N, with elements.
Examples
if (torch_is_installed()) {
a = torch_randn(c(10))
a
torch_cumprod(a, dim=1)
}
#> torch_tensor
#> -0.9075
#> 1.0791
#> -0.4005
#> 0.5046
#> 0.2897
#> 0.1311
#> -0.0892
#> 0.0890
#> 0.1040
#> 0.0737
#> [ CPUFloatType{10} ]