tf.keras.ops.arcsin
Обратный синус, поэлементно.
tf.keras.ops.arcsin(
x
)
| Аргументы | |
|---|---|
x | Входной тензор. |
| Возвращает | |
|---|---|
Тензор обратного синуса каждого элемента в x, в радианах и в замкнутом интервале [-pi/2, pi/2]. |
Пример:
x = keras.ops.convert_to_tensor([1, -1, 0]) keras.ops.arcsin(x) array([ 1.5707964, -1.5707964, 0.], dtype=float32)
© 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/keras/ops/arcsin