You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
253 B
20 lines
253 B
/*
|
|
* cabs() wrapper for hypot().
|
|
*
|
|
* Written by J.T. Conklin, <jtc@wimsey.com>
|
|
* Placed into the Public Domain, 1994.
|
|
*/
|
|
|
|
#include <math.h>
|
|
|
|
struct complex {
|
|
double x;
|
|
double y;
|
|
};
|
|
|
|
double
|
|
cabs(z)
|
|
struct complex z;
|
|
{
|
|
return hypot(z.x, z.y);
|
|
}
|
|
|