cos

dragon.vm.torch.cos(
  input,
  out=None
)[source]

Compute the cos of input.

\[\text{out} = \cos(\text{input}) \]

Examples:

x = torch.tensor([0., math.pi])
print(torch.cos(x))  # [1., -1.]
Parameters:
Returns:

dragon.vm.torch.Tensor The output tensor.