Fliplr
Source:R/gen-namespace-docs.R
, R/gen-namespace-examples.R
, R/gen-namespace.R
torch_fliplr.Rd
Fliplr
fliplr(input) -> Tensor
Flip array in the left/right direction, returning a new tensor.
Flip the entries in each row in the left/right direction. Columns are preserved, but appear in a different order than before.
Examples
if (torch_is_installed()) {
x <- torch_arange(start = 1, end = 4)$view(c(2, 2))
x
torch_fliplr(x)
}
#> torch_tensor
#> 2 1
#> 4 3
#> [ CPUFloatType{2,2} ]