Section courante

A propos

Section administrative du site

COTAN

Cotangente
Free Pascal Math

Syntaxe

Function cotan(X:Float):Float;

Paramètres

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

Description

Cette fonction trigonométrique retourne le «Cotangente».

Exemple

Voici un exemple permet d'afficher la Cotangante inférieurs à π :

  1. Program CotanSamples;
  2.  
  3. Uses Math;
  4.  
  5. Var
  6.  I:Real;
  7.  
  8. BEGIN
  9.  I := 0.1;
  10.  While I < PI do Begin
  11.   WriteLn('Cotan(',I:1:1,')=',Cotan(I):1:6);
  12.   I := I + 0.1;
  13.  End;
  14. END.

on obtiendra le résultat suivant :

Cotan(0.1)=9.966644
Cotan(0.2)=4.933155
Cotan(0.3)=3.232728
Cotan(0.4)=2.365222
Cotan(0.5)=1.830488
Cotan(0.6)=1.461696
Cotan(0.7)=1.187242
Cotan(0.8)=0.971215
Cotan(0.9)=0.793551
Cotan(1.0)=0.642093
Cotan(1.1)=0.508968
Cotan(1.2)=0.388780
Cotan(1.3)=0.277616
Cotan(1.4)=0.172477
Cotan(1.5)=0.070915
Cotan(1.6)=-0.029212
Cotan(1.7)=-0.129927
Cotan(1.8)=-0.233304
Cotan(1.9)=-0.341635
Cotan(2.0)=-0.457658
Cotan(2.1)=-0.584848
Cotan(2.2)=-0.727896
Cotan(2.3)=-0.893484
Cotan(2.4)=-1.091686
Cotan(2.5)=-1.338648
Cotan(2.6)=-1.662243
Cotan(2.7)=-2.115383
Cotan(2.8)=-2.812703
Cotan(2.9)=-4.058353
Cotan(3.0)=-7.015253
Cotan(3.1)=-24.028842


Dernière mise à jour : Samedi, le 18 juillet 2015