cabs
, cabsf
cabsl
Ruft den absoluten Wert einer komplexen Zahl ab.
Syntax
double cabs(
_Dcomplex z
);
float cabs(
_Fcomplex z
); // C++ only
long double cabs(
_Lcomplex z
); // C++ only
float cabsf(
_Fcomplex z
);
long double cabsl(
_Lcomplex z
);
Parameter
z
Eine komplexe Zahl.
Rückgabewert
Der Absolutbetrag von z
.
Hinweise
Da C++ das Überladen zulässt, können Sie Überladungen von cabs
aufrufen, die _Fcomplex
- oder _Lcomplex
-Werte annehmen und float
- oder long double
-Werte zurückgeben. In einem C-Programm nimmt cabs
immer einen _Dcomplex
-Wert an und gibt einen double
-Wert zurück.
Anforderungen
Routine | C-Header | C++-Header |
---|---|---|
cabs , cabsf cabsl |
<complex.h> | <ccomplex> |
Weitere Informationen zur Kompatibilität finden Sie unter Kompatibilität.
Weitere Informationen
Alphabetische Funktionsreferenz
norm
, normf
norml
creal
, crealf
creall
cproj
, cprojf
cprojl
conj
, conjf
conjl
cimag
, cimagf
cimagl
carg
, cargf
cargl