System Grab Bag

View all man pages from Linux (or from all projects)

Name

cabs, cabsf, cabsl - absolute value of a complex number

Library

Math library ( libm ", " -lm )

Synopsis

#include <complex.h> 
double cabs(double complex  z );
float cabsf(float complex z );
long double cabsl(long double complex z );

Description

These functions return the absolute value of the complex number z. The result is a real number.

Attributes

For an explanation of the terms used in this section, see attributes(7). allbox; lbx lb lb T{ cabs()cabsf()cabsl()
InterfaceAttributeValue
T}Thread safetyMT-Safe

Standards

C11, POSIX.1-2008.

History

glibc 2.1. C99, POSIX.1-2001.

Notes

The function is actually an alias for "hypot(a,\ b)" (or, equivalently, "sqrt(a*a\ +\ b*b)" ).

See Also

  1. abs(3),
  2. cimag(3),
  3. hypot(3),
  4. complex(7)