Section courante

A propos

Section administrative du site

ATANL

ArcTangente long
QuickC math.h

Syntaxe

long double atanl(long double n);

Paramètres

Nom Description
n Ce paramètre permet d'indiquer l'expression contenant le nombre à traiter

Description

Cette fonction trigonométrique retourne l'«ArcTangente» long.

Exemple

Voici un exemple permet d'afficher les ArcTangente inférieurs à 1 :

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4.          
  5. int main() {
  6.  float R = 0.0;
  7.  while(R < 1.1) {
  8.   printf("atanl(%f)=%f\n",R,(float) atanl(R));
  9.   R += 0.1;
  10.  }
  11.  return 0;
  12. }

on obtiendra le résultat suivant :

atanl(0.000000)=0.000000
atanl(0.100000)=0.099669
atanl(0.200000)=0.197396
atanl(0.300000)=0.291457
atanl(0.400000)=0.380506
atanl(0.500000)=0.463648
atanl(0.600000)=0.540420
atanl(0.700000)=0.610726
atanl(0.800000)=0.674741
atanl(0.900000)=0.732815
atanl(1.000000)=0.785398

Voir également

Langage de programmation - QuickC - Référence des fonctions - cos
Langage de programmation - QuickC - Référence des fonctions - sin
Langage de programmation - QuickC - Référence des fonctions - tan

Dernière mise à jour : Dimanche, le 28 juin 2015