New translation by Jens Rohler <jkcr@rohler.de>
[infodrom/manpages-de] / man3 / cabs.3
diff --git a/man3/cabs.3 b/man3/cabs.3
new file mode 100644 (file)
index 0000000..92e1ee6
--- /dev/null
@@ -0,0 +1,29 @@
+.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
+.\" Distributed under GPL
+.\" Translated into German by Jens Rohler(jkcr@rohler.de)
+.\"
+.TH CABS 3 "10. April 2006" "" "Bibliotheksfunktionen"
+.SH BEZEICHNUNG
+cabs, cabsf, cabsl \- Absolutbetrag einer komplexen Zahl
+.SH "ÜBERSICHT"
+.B #include <complex.h>
+.sp
+.BI "double cabs(double complex " z );
+.sp
+.BI "float cabsf(float complex " z );
+.sp
+.BI "long double cabsl(long double complex " z );
+.sp
+Mit \-lm linken.
+.SH BESCHREIBUNG
+Die Funktionenfamilie \fBcabs\fP() gibt den Absolutbetrag der komplexen 
+Zahl z zurück. Das Resultat ist eine reelle Zahl.
+.SH ANMERKUNG
+Die Funktion ist tatsächlich ein Alias für hypot(a,b) = sqrt(a*a+b*b).
+.SH "KONFORM ZU"
+C99
+.SH "SIEHE AUCH"
+.BR abs (3),
+.BR cimag (3),
+.BR hypot (3),
+.BR complex (5),