torch_deg2rad {torch} | R Documentation |
Deg2rad
Description
Deg2rad
Usage
torch_deg2rad(self)
Arguments
self |
(Tensor) the input tensor. |
deg2rad(input, *, out=None) -> Tensor
Returns a new tensor with each of the elements of input
converted from angles in degrees to radians.
Examples
if (torch_is_installed()) {
a <- torch_tensor(rbind(c(180.0, -180.0), c(360.0, -360.0), c(90.0, -90.0)))
torch_deg2rad(a)
}
[Package torch version 0.13.0 Index]