Imported tab->space correction by redhat
[infodrom/manpages-de] / man3 / exp.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one
11 .\" 
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\" 
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\"     Linux libc source code
25 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\"     386BSD man pages
27 .\" Modified Sat Jul 24 19:42:57 1993 by Rik Faith (faith@cs.unc.edu)
28 .\" Modified Aug 14 1995 by Arnt Gulbrandsen <agulbra@troll.no>
29 .\"
30 .\" Translated into german by Markus Schmitt (fw@math.uni-sb.de)
31 .\"
32 .TH EXP 3 "1. Juli 1996" "GNU" "Bibliotheksfunktionen"
33 .\"
34 .SH BEZEICHNUNG
35 exp, log, log10, pow - Exponentialfunktion, Logarithmenfunktionen und Potenzfunktionen
36 .SH "ÜBERSICHT"
37 .nf
38 .B #include <math.h>
39 .sp
40 .BI "double exp(double " x );
41 .sp
42 .BI "double log(double " x );
43 .sp
44 .BI "double log10(double " x );
45 .sp
46 .BI "double pow(double " x ", double " y );
47 .fi
48 .SH BESCHREIBUNG
49 Die Funktion
50 .B exp
51 gibt den Wert von e hoch
52 .I x 
53 zurück.
54
55 Die Funktion 
56 .B log()
57 gibt den natürlichen Logarithmus von
58 .I x
59 zurück.
60
61 Die Funktion
62 .B log10()
63 gibt den Logarithmus zur Basis 10 von
64 .I x
65 zurück.
66
67 Die Funktion
68 .B pow()
69 gibt den Wert von 
70 .I x
71 hoch 
72 .I y
73 zurück.
74 .SH FEHLER
75 Die Funktionen
76 .B log() 
77 und 
78 .B log10()
79 können folgende Fehler zurückliefern:
80 .TP
81 .B EDOM
82 Das Argument
83 .I x
84 ist negativ
85 .TP
86 .B ERANGE
87 Das Argument 
88 .I x 
89 ist 0.  Der Logarithmus von 0 ist nicht definiert.
90 .PP
91 Die Funktion 
92 .B pow()
93 kann folgenden Fehler zurückliefern:
94 .TP
95 .B EDOM
96 Das Argument
97 .I x
98 ist negativ und das Argument
99 .I y
100 ist keine ganze Zahl.
101 Dies würde eine komplexe Zahl darstellen.
102 .SH "KONFORM ZU"
103 SVID 3, POSIX, BSD 4.3, ISO 9899
104 .SH "SIEHE AUCH"
105 .BR sqrt (3),
106 .BR cbrt (3).
107
108
109