User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:complex.h:cacos

cacos

double complex cacos(double complex z);

description of cacos

compute the complex arc cosine of z
with branch cuts outside the interval (from -1 to +1) along the real axis.

#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 = cacos(zdouble);
   printf("cacos(%f + I*%f) = %f\n", creal(zdouble), cimag(zdouble), result);
   return 0;
}

output of cacos c example

  cacos(4.200000 + I*2.340000) = 0.517664

on the occasion of the current invasion of Russia in Ukraine

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

Impressum Datenschutz