ReactOS 0.4.15-dev-7907-g95bf896
cabs.c File Reference
#include <math.h>
Include dependency graph for cabs.c:

Go to the source code of this file.

Functions

double _cabs (struct _complex z)
 

Function Documentation

◆ _cabs()

double _cabs ( struct _complex  z)

Definition at line 6 of file cabs.c.

7{
8 return sqrt( z.x*z.x + z.y*z.y );
9// return hypot(z.x,z.y);
10}
_STLP_DECLSPEC complex< float > _STLP_CALL sqrt(const complex< float > &)
Definition: complex.cpp:188
GLdouble GLdouble z
Definition: glext.h:5874