tan, tanl
Nach oben zu math.h - Index
Header-Datei
math.h
Kategorie
Mathematische Routinen
Prototyp
double tan(double x);
long double tanl(long double x);
Beschreibung
Berechnet den Tangens.
tan berechnet den Tangens. Die Winkel werden in Radianten angegeben.
tanl ist die long double-Version. Sie benötigt ein Argument vom Typ long double und gibt ein Ergebnis vom Typ long double zurück. Die Fehlerbehandlung für diese Routinen kann über die Funktionen _matherr und _matherrl geändert werden.
Rückgabewert
tan und tanl geben den Tangens von x, also sin(x)/cos(x), zurück.
Beispiel
#include <stdio.h>
#include <math.h>
int main(void)
{
double result, x;
x = 0.5;
result = tan(x);
printf("The tan of %lf is %lf\n", x, result);
return 0;
}
Portabilität
POSIX | Win32 | ANSI C | ANSI C++ | |
---|---|---|---|---|
tan |
+ |
+ |
+ |
+ |
tanl |
+ |
+ |
+ |