23 lines
395 B
C
23 lines
395 B
C
|
/*
|
||
|
cprojf.c
|
||
|
Contributed by Danny Smith
|
||
|
2004-12-24
|
||
|
*/
|
||
|
|
||
|
#include <math.h>
|
||
|
#include <complex.h>
|
||
|
|
||
|
/* Return the value of the projection onto the Riemann sphere.*/
|
||
|
|
||
|
float complex cprojf (float complex Z)
|
||
|
{
|
||
|
complex float Res = Z;
|
||
|
if (isinf (__real__ Z) || isinf (__imag__ Z))
|
||
|
{
|
||
|
__real__ Res = HUGE_VALF;
|
||
|
__imag__ Res = copysignf (0.0f, __imag__ Z);
|
||
|
}
|
||
|
return Res;
|
||
|
}
|
||
|
|