C mathematical functions – Wikipedia

From Wikipedia, the free encyclopedia

C standard library header file providing mathematical functions

C mathematical operations are a group of functions in the standard library of the C programming language implementing basic mathematical functions.[1][2] All functions use floating-point numbers in one manner or another. Different C standards provide different, albeit backwards-compatible, sets of functions. Most of these functions are also available in the C++ standard library, though in different headers (the C headers are included as well, but only as a deprecated compatibility feature).

Overview of functions[edit]

Most of the mathematical functions are defined in ( header in C++). The functions that operate on integers, such as abs, labs, div, and ldiv, are instead defined in the header ( header in C++).

Any functions that operate on angles use radians as the unit of angle.[1]

Not all of these functions are available in the C89 version of the standard. For those that are, the functions accept only type double for the floating-point arguments, leading to expensive type conversions in code that otherwise used single-precision float values. In C99, this shortcoming was fixed by introducing new sets of functions that work on float and long double arguments. Those functions are identified by f and l suffixes respectively.[3]

Floating-point environment[edit]

C99 adds several functions and types for fine-grained control of floating-point environment.[3] These functions can be used to control a variety of settings that affect floating-point computations, for example, the rounding mode, on what conditions exceptions occur, when numbers are flushed to zero, etc. The floating-point environment functions and types are defined in header ( in C++).

Complex numbers[edit]

C99 adds a new _Complex keyword (and complex convenience macro) that provides support for complex numbers. Any floating-point type can be modified with complex, and is then defined as a pair of floating-point numbers. Note that C99 and C++ do not implement complex numbers in a code-compatible way – the latter instead provides the class std::complex.

All operations on complex numbers are defined in header. As with the real-valued functions, an f or l suffix denotes the float complex or long double complex variant of the function.

A few more complex functions are “reserved for future use in C99”.[5] Implementations are provided by open-source projects that are not part of the standard library.

Type-generic functions[edit]


The header defines a type-generic macro for each mathematical function defined in and . This adds a limited support for function overloading of the mathematical functions: the same function name can be used with different types of parameters; the actual function will be selected at compile time according to the types of the parameters.

Each type-generic macro that corresponds to a function that is defined for both real and complex numbers encapsulates a total of 6 different functions: float, double and long double, and their complex variants. The type-generic macros that correspond to a function that is defined for only real numbers encapsulates a total of 3 different functions: float, double and long double variants of the function.

The C++ language includes native support for function overloading and thus does not provide the header even as a compatibility feature.

Random number generation[edit]


The header ( in C++) defines several functions that can be used for statistically random number generation.[6]

Function Description
rand generates a pseudo-random number between 0 and RAND_MAX, inclusive.
srand initializes a pseudo-random number generator
arc4random generates a pseudo-random number between 0 and UINT32_MAX, usually using a better algorithm than rand
arc4random_uniform generates a pseudo-random number between 0 and a maximum value.
arc4random_buf fill a buffer with a pseudo-random bitstream.
arc4random_stir initializes a pseudo-random number generator.

The arc4random family of random number functions are not defined in POSIX standard, but is found in some common libc implementations. It used to refer to the keystream generator of a leaked version of RC4 cipher (hence “alleged RC4“), but different algorithms, usually from other ciphers like ChaCha20, have been implemented since using the same name.

The quality of randomness from rand are usually too weak to be even considered statistically random, and it requires explicit seeding. It is usually advised to use arc4random instead of rand when possible. Some C libraries implement rand using arc4random_uniform internally.

Implementations[edit]

Under POSIX systems like Linux and BSD, the mathematical functions (as declared in ) are bundled separately in the mathematical library libm. Therefore, if any of those functions are used, the linker must be given the directive -lm. There are various libm implementations, including:

Implementations not necessarily under a name of libm include:

See also[edit]

References[edit]

  1. ^ a b ISO/IEC 9899:1999 specification (PDF). p. 212, § 7.12.
  2. ^ Prata, Stephen (2004). C primer plus. Sams Publishing. Appendix B, Section V: The Standard ANSI C Library with C99 Additions. ISBN 0-672-32696-5.
  3. ^ a b Prata, Stephen (2004). C primer plus. Sams Publishing. Appendix B, Section VIII: C99 Numeric Computational Enhancements. ISBN 0-672-32696-5.
  4. ^ Notationally, it may seem convenient to use pow(x,2) or pow(x,3) to compute squares or cubes. However, this is not advisable in time-critical code. Unless an implementation takes special care of these cases at compile time, x*x or x*x*x will execute much faster. Also, sqrt(x) and cbrt(x) should be preferred over pow(x,.5) or pow(x,1./3).
  5. ^ man cerf(3), man cerfc(3), see e.g. https://linux.die.net/man/3/cerf.
  6. ^ “The GNU C Library – ISO Random”. Retrieved 18 July 2018.
  7. ^ Cordes, Peter. “intel – Where is Clang’s ‘_mm256_pow_ps’ intrinsic?”. Stack Overflow.

External links[edit]