|
| Monomial (const unsigned int n, const double coefficient=1.) |
|
| Polynomial (const std::vector< number > &coefficients) |
|
| Polynomial (const unsigned int n) |
|
| Polynomial (const std::vector< Point< 1 > > &lagrange_support_points, const unsigned int evaluation_point) |
|
| Polynomial () |
|
number | value (const number x) const |
|
void | value (const number x, std::vector< number > &values) const |
|
unsigned int | degree () const |
|
void | scale (const number factor) |
|
template<typename number2 > |
void | shift (const number2 offset) |
|
Polynomial< number > | derivative () const |
|
Polynomial< number > | primitive () const |
|
Polynomial< number > & | operator*= (const double s) |
|
Polynomial< number > & | operator*= (const Polynomial< number > &p) |
|
Polynomial< number > & | operator+= (const Polynomial< number > &p) |
|
Polynomial< number > & | operator-= (const Polynomial< number > &p) |
|
bool | operator== (const Polynomial< number > &p) const |
|
void | print (std::ostream &out) const |
|
template<class Archive > |
void | serialize (Archive &ar, const unsigned int version) |
|
| Subscriptor () |
|
| Subscriptor (const Subscriptor &) |
|
virtual | ~Subscriptor () |
|
Subscriptor & | operator= (const Subscriptor &) |
|
void | subscribe (const char *identifier=0) const |
|
void | unsubscribe (const char *identifier=0) const |
|
unsigned int | n_subscriptions () const |
|
void | list_subscribers () const |
|
| DeclException3 (ExcInUse, int, char *, std::string &,<< "Object of class "<< arg2<< " is still used by "<< arg1<< " other objects.\n"<< "(Additional information: "<< arg3<< ")\n"<< "Note the entry in the Frequently Asked Questions of "<< "deal.II (linked to from http://www.dealii.org/) for "<< "more information on what this error means.") |
|
| DeclException2 (ExcNoSubscriber, char *, char *,<< "No subscriber with identifier \""<< arg2<< "\" did subscribe to this object of class "<< arg1) |
|
template<class Archive > |
void | serialize (Archive &ar, const unsigned int version) |
|
template<typename number>
class Polynomials::Monomial< number >
Class generates Polynomial objects representing a monomial of degree n, that is, the function
.
- Author
- Guido Kanschat, 2004
Definition at line 254 of file polynomial.h.