libcrn
3.9.5
A document image processing library
|
#include <CRN.h>
#include <set>
Go to the source code of this file.
Namespaces | |
crn | |
crn::LinearSystem | |
Solvers for systems of linear equations. | |
crn::QuadraticEquation | |
Solvers for quadratic equations. | |
Functions | |
MatrixDouble | crn::LinearSystem::Cramer (const SquareMatrixDouble &Coefficients, const MatrixDouble &ConstantTerms) |
Resolution of linear equation system by the determinant method. More... | |
MatrixDouble | crn::LinearSystem::GaussJordan (const SquareMatrixDouble &Coefficients, const MatrixDouble &ConstantTerms) |
Resolution of linear equation system by the pivot method. More... | |
double | crn::QuadraticEquation::Discriminant (double a, double b, double c) noexcept |
Discriminant of trinom ![]() | |
std::set< double > | crn::QuadraticEquation::RealRoots (double a, double b, double c) noexcept |
Real roots of trinom ![]() | |