Spec-Zone.ru › PyTorch 2

torch.sin

torch.sin(input, *, out=None) → Tensor

Возвращает новый тензор с синусом элементов input.

outi=sin⁡(inputi)\text{out}_{i} = \sin(\text{input}_{i})
Параметры

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/2.1/generated/torch.sin.html

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API