1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 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 );
.br
.BI "float cabsf(float complex " z );
.br
.BI "long double cabsl(long double complex " z );
.sp
Mit der Option \-lm linken.
.SH BESCHREIBUNG
Die Funktionenfamilie \fBcabs\fP() gibt den Absolutbetrag der komplexen
Zahl z zurck. Das Resultat ist eine reelle Zahl.
.SH ANMERKUNG
Die Funktion ist tatschlich ein Alias fr 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).
|