View source: R/gen-namespace.R
torch_rot90 | R Documentation |
Rot90
torch_rot90(self, k = 1L, dims = c(0, 1))
self |
(Tensor) the input tensor. |
k |
(int) number of times to rotate |
dims |
(a list or tuple) axis to rotate |
Rotate a n-D tensor by 90 degrees in the plane specified by dims axis. Rotation direction is from the first towards the second axis if k > 0, and from the second towards the first for k < 0.
if (torch_is_installed()) {
x <- torch_arange(1, 4)$view(c(2, 2))
x
torch_rot90(x, 1, c(1, 2))
x <- torch_arange(1, 8)$view(c(2, 2, 2))
x
torch_rot90(x, 1, c(1, 2))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.