Section courante

A propos

Section administrative du site

SINH

Sinus hyperbolique
SAS Trigonométrie

Syntaxe

SINH(argument)

Paramètres

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

Description

Cette fonction retourne le Sinus hyperbolique.

Exemple

Voici un exemple permet d'afficher les sinus hyperbolique inférieurs à π :

  1. data sinhsamples;
  2.  I = 0;
  3.  do while(I < CONSTANT('PI'));
  4.   R = sinh(I);
  5.   put 'Sinh(' I ')=' R;
  6.   I = I + 0.1;
  7.  end;
  8. run;

on obtiendra le résultat suivant :

Sinh(0 )=0
Sinh(0.1 )=0.10016675
Sinh(0.2 )=0.2013360025
Sinh(0.3 )=0.3045202934
Sinh(0.4 )=0.4107523258
Sinh(0.5 )=0.5210953055
Sinh(0.6 )=0.6366535821
Sinh(0.7 )=0.7585837018
Sinh(0.8 )=0.8881059822
Sinh(0.9 )=1.0265167257
Sinh(1 )=1.1752011936
Sinh(1.1 )=1.3356474701
Sinh(1.2 )=1.5094613554
Sinh(1.3 )=1.6983824373
Sinh(1.4 )=1.9043015015
Sinh(1.5 )=2.1292794551
Sinh(1.6 )=2.3755679532
Sinh(1.7 )=2.6456319338
Sinh(1.8 )=2.9421742881
Sinh(1.9 )=3.2681629115
Sinh(2 )=3.6268604078
Sinh(2.1 )=4.0218567422
Sinh(2.2 )=4.4571051705
Sinh(2.3 )=4.9369618055
Sinh(2.4 )=5.4662292137
Sinh(2.5 )=6.050204481
Sinh(2.6 )=6.6947322284
Sinh(2.7 )=7.4062631061
Sinh(2.8 )=8.1919183542
Sinh(2.9 )=9.0595610747
Sinh(3 )=10.017874927
Sinh(3.1 )=11.07645104


Dernière mise à jour : Samedi, le 6 août 2016