mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
15 lines
145 B
C
15 lines
145 B
C
|
#include <math.h>
|
||
|
|
||
|
/*
|
||
|
* @implemented
|
||
|
*/
|
||
|
double _cabs( struct _complex z )
|
||
|
{
|
||
|
return sqrt( z.x*z.x + z.y*z.y );
|
||
|
// return hypot(z.x,z.y);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|