ReactOS 0.4.15-dev-7924-g5949c20
cabs.c
Go to the documentation of this file.
1#include <math.h>
2
3/*
4 * @implemented
5 */
6double _cabs( struct _complex z )
7{
8 return sqrt( z.x*z.x + z.y*z.y );
9// return hypot(z.x,z.y);
10}
11
12
13
14
_STLP_DECLSPEC complex< float > _STLP_CALL sqrt(const complex< float > &)
Definition: complex.cpp:188
double _cabs(struct _complex z)
Definition: cabs.c:6
GLdouble GLdouble z
Definition: glext.h:5874
Definition: math.h:31