torch_atleast_1d function

Atleast_1d

Atleast_1d

Returns a 1-dimensional view of each input tensor with zero dimensions. Input tensors with one or more dimensions are returned as-is.

torch_atleast_1d(self)

Arguments

  • self: (Tensor or list of Tensors)

Examples

if (torch_is_installed()) { x <- torch_randn(c(2)) x torch_atleast_1d(x) x <- torch_tensor(1.) x torch_atleast_1d(x) x <- torch_tensor(0.5) y <- torch_tensor(1.) torch_atleast_1d(list(x,y)) }
  • Maintainer: Daniel Falbel
  • License: MIT + file LICENSE
  • Last published: 2025-02-14