View_as_real
Source:R/gen-namespace-docs.R, R/gen-namespace-examples.R, R/gen-namespace.R
torch_view_as_real.RdView_as_real
view_as_real(input) -> Tensor
Returns a view of input as a real tensor. For an input complex tensor of
size \(m1, m2, \dots, mi\), this function returns a new
real tensor of size \(m1, m2, \dots, mi, 2\), where the last dimension of size 2
represents the real and imaginary components of complex numbers.
Examples
if (torch_is_installed()) {
if (FALSE) {
x <- torch_randn(4, dtype=torch_cfloat())
x
torch_view_as_real(x)
}
}