cprojf, cproj, cprojl
From cppreference.com
                    
                                        
                    
                    
                                                            
                    | Defined in header  <complex.h> | ||
| float       cprojf( float complex z ); | (since C99) | |
| double      cproj( double complex z ); | (since C99) | |
| long double cprojl( long double complex z ); | (since C99) | |
Computes the projection of z on the Riemann sphere.
| This section is incomplete | 
| Contents | 
[edit] Parameters
| z | - | complex argument | 
[edit] Return value
The projection of z on the Riemann sphere.
[edit] Example
Run this code
Output:
inf+0.0i
[edit] See also
| C++ documentation for proj | 


