SLIP
1.4
|
Provides a class to manipulate monovariate polynomial. More...
#include <iostream>
#include <iterator>
#include <cassert>
#include <numeric>
#include <algorithm>
#include <complex>
#include <cstddef>
#include <string>
#include "Array.hpp"
#include "Vector.hpp"
#include "Matrix.hpp"
#include "convolution.hpp"
#include "statistics.hpp"
#include "linear_least_squares.hpp"
#include "linear_algebra_eigen.hpp"
#include "polynomial_algo.hpp"
#include <boost/serialization/access.hpp>
#include <boost/serialization/split_member.hpp>
#include <boost/serialization/string.hpp>
#include <boost/serialization/complex.hpp>
#include <boost/serialization/version.hpp>
Go to the source code of this file.
Classes | |
class | slip::Polynomial< T > |
Numerical Polynomial class. This container statisfies the RandomAccessContainer concepts of the STL The coefficients of the polynomial ![]() | |
class | slip::Polynomial< T > |
Numerical Polynomial class. This container statisfies the RandomAccessContainer concepts of the STL The coefficients of the polynomial ![]() | |
Namespaces | |
slip | |
This namespace corresponds to the kernel of the Simple Library on Image Processing (SLIP). That is to say that it contains the data structures and the algorithms needed by these data strucutres. | |
Functions | |
template<typename T > | |
std::ostream & | slip::operator<< (std::ostream &out, const Polynomial< T > &v) |
EqualityComparable functions | |
template<typename T > | |
bool | slip::operator== (const Polynomial< T > &x, const Polynomial< T > &y) |
template<typename T > | |
bool | slip::operator!= (const Polynomial< T > &x, const Polynomial< T > &y) |
LessThanComparable functions | |
template<typename T > | |
bool | slip::operator< (const Polynomial< T > &x, const Polynomial< T > &y) |
template<typename T > | |
bool | slip::operator> (const Polynomial< T > &x, const Polynomial< T > &y) |
template<typename T > | |
bool | slip::operator<= (const Polynomial< T > &x, const Polynomial< T > &y) |
template<typename T > | |
bool | slip::operator>= (const Polynomial< T > &x, const Polynomial< T > &y) |
Arithemtical operators |
Provides a class to manipulate monovariate polynomial.
Definition in file Polynomial.hpp.