![]() |
Quartic roots
Utilities for C++ programming
|
Go to the source code of this file.
Classes | |
| class | PolynomialRoots::real_complex |
| Lightweight complex number type used by the standard-precision solvers. More... | |
Namespaces | |
| namespace | PolynomialRoots |
Macros | |
| #define | POLYNOMIAL_ROOTS_COMPLEX_HXX |
Functions | |
| real_complex | PolynomialRoots::operator+ (real_complex const &a, real_complex const &b) |
| Return the sum of two standard-precision complex values. | |
| real_complex | PolynomialRoots::operator+ (real_complex const &a, real_type b) |
| Return the sum of a standard-precision complex value and a real scalar. | |
| real_complex | PolynomialRoots::operator+ (real_type a, real_complex const &b) |
| Return the sum of a real scalar and a standard-precision complex value. | |
| real_complex | PolynomialRoots::operator- (real_complex const &a, real_complex const &b) |
| Return the difference of two standard-precision complex values. | |
| real_complex | PolynomialRoots::operator- (real_complex const &a, real_type b) |
| Return the difference between a standard-precision complex value and a real scalar. | |
| real_complex | PolynomialRoots::operator- (real_type a, real_complex const &b) |
| Return the difference between a real scalar and a standard-precision complex value. | |
| real_complex | PolynomialRoots::operator- (real_complex const &a) |
| Return the additive inverse of a standard-precision complex value. | |
| real_complex | PolynomialRoots::operator* (real_complex const &a, real_complex const &b) |
| Return the product of two standard-precision complex values. | |
| real_complex | PolynomialRoots::operator* (real_complex const &a, real_type b) |
| Return the product of a standard-precision complex value and a real scalar. | |
| real_complex | PolynomialRoots::operator* (real_type a, real_complex const &b) |
| Return the product of a real scalar and a standard-precision complex value. | |
| real_complex | PolynomialRoots::operator/ (real_complex const &a, real_complex const &b) |
| Return the quotient of two standard-precision complex values. | |
| real_complex | PolynomialRoots::operator/ (real_complex const &a, real_type b) |
| Return the quotient of a standard-precision complex value and a real scalar. | |
| real_complex | PolynomialRoots::operator/ (real_type a, real_complex const &b) |
| Return the quotient of a real scalar and a standard-precision complex value. | |
| real_type | PolynomialRoots::abs (real_complex const &value) |
| real_type | PolynomialRoots::abs2 (real_complex const &value) |
| #define POLYNOMIAL_ROOTS_COMPLEX_HXX |