Cumsum
Source:R/gen-namespace-docs.R
, R/gen-namespace-examples.R
, R/gen-namespace.R
torch_cumsum.Rd
Cumsum
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 todtype
before 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.
$$ y_i = x_1 + x_2 + x_3 + \dots + x_i $$
Examples
if (torch_is_installed()) {
a = torch_randn(c(10))
a
torch_cumsum(a, dim=1)
}
#> torch_tensor
#> -1.2499
#> -0.6899
#> -2.9677
#> -2.2579
#> -1.8257
#> -1.3672
#> 0.0859
#> -0.2341
#> 0.0627
#> -0.1228
#> [ CPUFloatType{10} ]