Where I can find original cmath
or math.h
files?
I need to use a comp_ellint_1(double) function in my program. It is declared in C++17
standard in Special functions.
But my compilers(I tried g++/clang++
etc.) say this.
I found out that in core files, where standard math.h and cmath
are, there are no such functions declared in cmath
. It looks like it is 99 standard...
These functions are available in gcc starting with version 7.1 and in clang starting with 3.9. You either have to upgrade your compiler, or use some other implementation (according to en.cppreference.com, you can use Boost.math