atan |
Arc tangente |
---|---|
TensorFlow version 2 | Python |
Syntaxe
tf.math.atan( x, name=None ) |
Paramètres
Nom | Description |
---|---|
x | Ce paramètre permet d'indiquer un Tensor. Doit être l'un des types suivants : bfloat16, half, float32, float64, int8, int16, int32, int64, complex64 ou complex128. |
name | Ce paramètre optionnel permet d'indiquer un nom pour cette opération. |
Description
Cette fonction permet de calculer la tangente inverse trigonométrique du paramètre spécifié élément par élément.
Remarques
- L'opération tf.math.atan renvoie l'inverse de tf.math.tan, tel que si y = tf.math.tan(x) alors, x = tf.math.atan(y).
- La sortie de tf.math.atan se situera dans l'intervalle inversible de tan, c'est-à-dire (-π/2, π/2).
Dernière mise à jour : Samedi, le 12 Décembre 2020