torch_atleast_2d | R Documentation |
Returns a 2-dimensional view of each each input tensor with zero dimensions. Input tensors with two or more dimensions are returned as-is.
torch_atleast_2d(self)
self |
(Tensor or list of Tensors) |
if (torch_is_installed()) {
x <- torch_tensor(1.)
x
torch_atleast_2d(x)
x <- torch_randn(c(2,2))
x
torch_atleast_2d(x)
x <- torch_tensor(0.5)
y <- torch_tensor(1.)
torch_atleast_2d(list(x,y))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.