View source: R/gen-namespace.R
torch_view_as_real | R Documentation |
View_as_real
torch_view_as_real(self)
self |
(Tensor) the 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.
torch_view_as_real()
is only supported for tensors with complex dtypes
.
if (torch_is_installed()) {
if (FALSE) {
x <- torch_randn(4, dtype=torch_cfloat())
x
torch_view_as_real(x)
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.