.\" -*- coding: UTF-8 -*- '\" t .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) .\" and Copyright (C) 2011 Michael Kerrisk .\" .\" SPDX-License-Identifier: GPL-1.0-or-later .\" .\"******************************************************************* .\" .\" This file was generated with po4a. Translate the source file. .\" .\"******************************************************************* .TH catan 3 "20 juillet 2023" "Pages du manuel de Linux 6.05.01" .SH NOM catan, catanf, catanl – Fonction arc tangente complexe .SH BIBLIOTHÈQUE Bibliothèque de math (\fIlibm\fP, \fI\-lm\fP) .SH SYNOPSIS .nf \fB#include \fP .PP \fBdouble complex catan(double complex \fP\fIz\fP\fB);\fP \fBfloat complex catanf(float complex \fP\fIz\fP\fB);\fP \fBlong double complex catanl(long double complex \fP\fIz\fP\fB);\fP .fi .SH DESCRIPTION Ces fonctions calculent la valeur complexe de l'arc tangente de \fIz\fP. Si \fIy\~=\~catan(z)\fP, alors \fIz\~=\~ctan(y)\fP. La partie réelle de \fIy\fP est choisie dans l'intervalle [\-pi/2,pi/2]. .PP On a\ : .PP .in +4n .EX catan(z) = (clog(1 + i * z) \- clog(1 \- i * z)) / (2 * i) .EE .in .SH ATTRIBUTS Pour une explication des termes utilisés dans cette section, consulter \fBattributes\fP(7). .TS allbox; lbx lb lb l l l. Interface Attribut Valeur T{ .na .nh \fBcatan\fP(), \fBcatanf\fP(), \fBcatanl\fP() T} Sécurité des threads MT\-Safe .TE .sp 1 .SH STANDARDS C11, POSIX.1\-2008. .SH HISTORIQUE glibc 2.1. C99, POSIX.1\-2001. .SH EXEMPLES .\" SRC BEGIN (catan.c) .EX /* Éditez les liens avec "\-lm" */ \& #include #include #include #include \& int main(int argc, char *argv[]) { double complex z, c, f; double complex i = I; \& if (argc != 3) { fprintf(stderr, "Utilisation : %s \en", argv[0]); exit(EXIT_FAILURE); } \& z = atof(argv[1]) + atof(argv[2]) * I; \& c = catan(z); printf("catan() = %6.3f %6.3f*i\en", creal(c), cimag(c)); \& f = (clog(1 + i * z) \- clog(1 \- i * z)) / (2 * i); printf("formule = %6.3f %6.3f*i\en", creal(f), cimag(f)); \& exit(EXIT_SUCCESS); } .EE .\" SRC END .SH "VOIR AUSSI" \fBccos\fP(3), \fBclog\fP(3), \fBctan\fP(3), \fBcomplex\fP(7) .PP .SH TRADUCTION La traduction française de cette page de manuel a été créée par Christophe Blaess , Stéphan Rafin , Thierry Vignaud , François Micaux, Alain Portal , Jean-Philippe Guérard , Jean-Luc Coulon (f5ibh) , Julien Cristau , Thomas Huriaux , Nicolas François , Florentin Duneau , Simon Paillard , Denis Barbier et David Prévot . .PP Cette traduction est une documentation libre ; veuillez vous reporter à la .UR https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License version 3 .UE concernant les conditions de copie et de distribution. Il n'y a aucune RESPONSABILITÉ LÉGALE. .PP Si vous découvrez un bogue dans la traduction de cette page de manuel, veuillez envoyer un message à .MT debian-l10n-french@lists.debian.org .ME .