torch.sin
-
torch.sin(input, *, out=None) → Tensor -
Возвращает новый тензор с синусом элементов
input.- Параметры:
-
input (Tensor) – входной тензор.
- Ключевые аргументы:
-
out (Tensor, необязательно) – выходной тензор.
Пример:
>>> a = torch.randn(4) >>> a tensor([-0.5461, 0.1347, -2.7266, -0.2746]) >>> torch.sin(a) tensor([-0.5194, 0.1343, -0.4032, -0.2711])
© 2024, PyTorch Contributors
PyTorch has a BSD-style license, as found in the LICENSE file.
https://pytorch.org/docs/1.13/generated/torch.sin.html