User Tools

Site Tools


c:complex.h:csqrt

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

c:complex.h:csqrt [2013/02/03 19:13]
127.0.0.1 external edit
c:complex.h:csqrt [2024/02/16 01:06] (current)
Line 1: Line 1:
 ====== csqrt ====== ====== csqrt ======
 <code c> <code c>
 +double complex csqrt(double complex z);
 </code> </code>
  
 ==== description of csqrt ==== ==== description of csqrt ====
-csqrt is in work by code-reference.com \\  +calculate the complex squareroot
-if you are faster... don't hasitate and add it+
  
 <code c> <code c>
-no example at the moment+#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 = csqrt(zdouble); 
 +   printf("csqrt(%f + I*%f) = %f\n", creal(zdouble), cimag(zdouble), result); 
 +   return 0; 
 +
 </code> </code>
  
 ===== output of csqrt c example ===== ===== output of csqrt c example =====
-    no example at the moment+    csqrt(4.200000 + I*2.340000) = 2.122247
  

on the occasion of the current invasion of Russia in Ukraine

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

Impressum Datenschutz