tensorflow::ops::Cos
#include <math_ops.h>
Вычисляет косинус от x поэлементно.
Краткое описание
Принимая на вход тензор, эта функция вычисляет косинус каждого элемента в тензоре. Диапазон входных значений (-inf, inf), а диапазон выходных значений [-1,1]. Если входное значение находится вне границ, возвращается nan.
x = tf.constant([-float("inf"), -9, -0.5, 1, 1.2, 200, 10000, float("inf")])
tf.math.cos(x) ==> [nan -0.91113025 0.87758255 0.5403023 0.36235774 0.48718765 -0.95215535 nan]
Аргументы:
- scope: Объект Scope
Возвращает:
-
Output: Тензор y.
| Конструкторы и деструкторы | |
|---|---|
Cos(const ::tensorflow::Scope & scope, ::tensorflow::Input x) |
| Общедоступные атрибуты | |
|---|---|
operation | |
y | |
| Общедоступные функции | |
|---|---|
node() const | ::tensorflow::Node * |
operator::tensorflow::Input() const | |
operator::tensorflow::Output() const | |
Общедоступные атрибуты
operation
Operation operation
y
::tensorflow::Output y
Общедоступные функции
Cos
Cos( const ::tensorflow::Scope & scope, ::tensorflow::Input x )
node
::tensorflow::Node * node() const
operator::tensorflow::Input
operator::tensorflow::Input() const
operator::tensorflow::Output
operator::tensorflow::Output() const
© 2020 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/versions/r2.4/api_docs/cc/class/tensorflow/ops/cos