Spec-Zone.ru › TensorFlow

tf.compat.v1.math.sin

Вычисляет синус каждого элемента x поэлементно.

tf.compat.v1.math.sin(
    x: Annotated[Any, tf.raw_ops.Any],
    name=None
) -> Annotated[Any, tf.raw_ops.Any]

Принимая на вход тензор, эта функция вычисляет синус каждого элемента в тензоре. Диапазон входных значений — (-inf, inf), а диапазон выходных значений — [-1,1].

x = tf.constant([-float("inf"), -9, -0.5, 1, 1.2, 200, 10, float("inf")])
tf.math.sin(x) ==> [nan -0.4121185 -0.47942555 0.84147096 0.9320391 -0.87329733 -0.54402107 nan]
Аргументы
x A Tensor. Должен быть одним из следующих типов: bfloat16, half, float32, float64, complex64, complex128.
name Имя операции (необязательно).
Возвращаемое значение
A Tensor. Имеет тот же тип, что и x.

© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/compat/v1/math/sin

Spec-Zone.ru

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