C/C++
c99.txt
Associated article: C99 and Numeric Computing
Tags: C/C++
Published source code accompanying the article by Harry H. Cheng in which he discusses C99 and scientific and numerical computing.
C99 & Numeric Computing by Harry H. Cheng Example 2: (a) if(x > 0.0) function1(); else function2(); (b) if(x <= 0.0) function2(); else function1(); Example 3: double x, y, r; double complex z; double tolerance = DBL_EPSILON; ... z = cexp(complex(x/y, ...


