Cumsum
Source:R/gen-namespace-docs.R, R/gen-namespace-examples.R, R/gen-namespace.R
torch_cumsum.RdCumsum
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.
cumsum(input, dim, out=NULL, dtype=NULL) -> Tensor
Returns the cumulative sum 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_cumsum(a, dim=1)
}
#> torch_tensor
#> -0.5510
#> 0.8282
#> 1.1696
#> 0.7428
#> 1.2619
#> 1.9075
#> 2.2981
#> 1.1059
#> 0.6626
#> -1.4544
#> [ CPUFloatType{10} ]