User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:complex.h:catan

catan

double complex catan(double complex z);

description of catan

calculate the complex arc tangent

#include <stdio.h>
#include <complex.h>
 
int main( void )
{
 
   long double complex zlong=4.2 + I*2.34;
   double complex zdouble=(double complex)zlong;
 
   double result;
 
   result = catan(zdouble);
   printf("catan(%f + I*%f) = %f\n", creal(zdouble), cimag(zdouble), result);
   return 0;
}

output of catan c example

  catan(4.200000 + I*2.340000) = 1.389300

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/complex.h/catan.txt · Last modified: 2024/02/16 01:06 (external edit)

Impressum Datenschutz