Drake
Drake C++ Documentation
Polynomial< T >::Monomial Class Reference

Detailed Description

template<typename T = double>
class drake::Polynomial< T >::Monomial

An additive atom of a Polynomial: The product of any number of Terms and a coefficient.

#include <drake/common/polynomial.h>

Public Member Functions

bool operator== (const Monomial &other) const
 
bool operator< (const Monomial &other) const
 A comparison to allow std::lexicographical_compare on this class; does not reflect any sort of mathematical total order. More...
 
int GetDegree () const
 
int GetDegreeOf (VarType var) const
 
bool HasSameExponents (const Monomial &other) const
 
bool HasVariable (const VarType &var) const
 
Monomial Factor (const Monomial &divisor) const
 Factors this by other; returns 0 iff other does not divide this. More...
 

Public Attributes

coefficient
 
std::vector< Termterms
 

Member Function Documentation

◆ Factor()

Monomial Factor ( const Monomial divisor) const

Factors this by other; returns 0 iff other does not divide this.

◆ GetDegree()

int GetDegree ( ) const

◆ GetDegreeOf()

int GetDegreeOf ( VarType  var) const

◆ HasSameExponents()

bool HasSameExponents ( const Monomial other) const

◆ HasVariable()

bool HasVariable ( const VarType var) const

◆ operator<()

bool operator< ( const Monomial other) const

A comparison to allow std::lexicographical_compare on this class; does not reflect any sort of mathematical total order.

◆ operator==()

bool operator== ( const Monomial other) const

Member Data Documentation

◆ coefficient

T coefficient

◆ terms

std::vector<Term> terms

The documentation for this class was generated from the following file: