Creates a slice object that can be used when indexing torch tensors.
Arguments
- start
(integer) starting index.
- end
(integer) the last selected index.
- step
(integer) the step between indexes.
Examples
if (torch_is_installed()) {
x <- torch_randn(10)
x[slc(start = 1, end = 5, step = 2)]
}
#> torch_tensor
#> -1.1161
#> 0.1016
#> -1.2852
#> [ CPUFloatType{3} ]