table of contents
- bookworm 4.18.1-1
- bookworm-backports 4.24.0-2~bpo12+1
- testing 4.24.0-2
- unstable 4.24.0-2
asinh(3) | Library Functions Manual | asinh(3) |
NOM¶
asinh, asinhf, asinhl - Fonction arc sinus hyperbolique
BIBLIOTHÈQUE¶
Bibliothèque de math (libm, -lm)
SYNOPSIS¶
#include <math.h>
double asinh(double x); float asinhf(float x); long double asinhl(long double x);
asinh() :
_ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
|| _XOPEN_SOURCE >= 500
|| /* Depuis la glibc 2.19 : */ _DEFAULT_SOURCE
|| /* glibc <= 2.19 : */ _BSD_SOURCE || _SVID_SOURCE
asinhf(), asinhl() :
_ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
|| /* Depuis la glibc 2.19 : */ _DEFAULT_SOURCE
|| /* glibc <= 2.19 : */ _BSD_SOURCE || _SVID_SOURCE
DESCRIPTION¶
Ces fonctions calculent l'arc sinus hyperbolique de x, c'est-à-dire la valeur dont le sinus hyperbolique est x.
VALEUR RENVOYÉE¶
En cas de réussite, ces fonctions renvoient l'arc sinus hyperbolique de x.
Si x n’est pas un nombre, un NaN est renvoyé.
Si x est +0 (-0), +0 (-0) est renvoyé.
Si x est une valeur infinie positive (resp. négative), une valeur infinie positive est renvoyée (resp. négative).
ERREURS¶
Aucune erreur ne survient.
ATTRIBUTS¶
Pour une explication des termes utilisés dans cette section, consulter attributes(7).
Interface | Attribut | Valeur |
asinh(), asinhf(), asinhl() | Sécurité des threads | MT-Safe |
STANDARDS¶
C11, POSIX.1-2008.
HISTORIQUE¶
C99, POSIX.1-2001.
La variante renvoyant double est également conforme à SVr4, 4.3BSD.
VOIR AUSSI¶
TRADUCTION¶
La traduction française de cette page de manuel a été créée par Christophe Blaess <https://www.blaess.fr/christophe/>, Stéphan Rafin <stephan.rafin@laposte.net>, Thierry Vignaud <tvignaud@mandriva.com>, François Micaux, Alain Portal <aportal@univ-montp2.fr>, Jean-Philippe Guérard <fevrier@tigreraye.org>, Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>, Julien Cristau <jcristau@debian.org>, Thomas Huriaux <thomas.huriaux@gmail.com>, Nicolas François <nicolas.francois@centraliens.net>, Florentin Duneau <fduneau@gmail.com>, Simon Paillard <simon.paillard@resel.enst-bretagne.fr>, Denis Barbier <barbier@debian.org>, David Prévot <david@tilapin.org>, Cédric Boutillier <cedric.boutillier@gmail.com> et Jean-Pierre Giraud <jean-pierregiraud@neuf.fr>
Cette traduction est une documentation libre ; veuillez vous reporter à la GNU General Public License version 3 concernant les conditions de copie et de distribution. Il n'y a aucune RESPONSABILITÉ LÉGALE.
Si vous découvrez un bogue dans la traduction de cette page de manuel, veuillez envoyer un message à debian-l10n-french@lists.debian.org.
2 mai 2024 | Pages du manuel de Linux 6.8 |