View source: R/gen-namespace.R
torch_fliplr | R Documentation |
Fliplr
torch_fliplr(self)
self |
(Tensor) Must be at least 2-dimensional. |
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.
Equivalent to input[,-1]
. Requires the array to be at least 2-D.
if (torch_is_installed()) {
x <- torch_arange(start = 1, end = 4)$view(c(2, 2))
x
torch_fliplr(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.