|
| constexpr | FixedRationalPolynom ()=default |
| |
| constexpr | FixedRationalPolynom (const FixedRationalPolynom &)=default |
| |
| constexpr FixedRationalPolynom & | operator= (const FixedRationalPolynom &)=default |
| |
| template<std::convertible_to< T > U> |
| constexpr | FixedRationalPolynom (const U &scalar) |
| |
| constexpr | FixedRationalPolynom (const Polynom< T, N > &num, const Polynom< T, N > &den) |
| |
| constexpr | FixedRationalPolynom (const FixedPolynom< T, N > &num, const FixedPolynom< T, N > &den) |
| |
| constexpr | FixedRationalPolynom (const num_vector_type &num, const den_vector_type &den) |
| |
| constexpr | FixedRationalPolynom (const T(&num)[N], const T(&den)[N]) |
| |
| constexpr | operator TransferFunction< T, N, N > () const |
| |
| constexpr TransferFunction< T, N, N > | toRationalPolynom () const |
| |
| constexpr num_type & | num () |
| |
| constexpr const num_type & | num () const |
| |
| constexpr den_type & | den () |
| |
| constexpr const den_type & | den () const |
| |
| void | print (std::ostream &stream, std::string_view var="x") const |
| |
template<class T, int N>
class controlpp::FixedRationalPolynom< T, N >
Fixed sized polynomial.
-----------------------------------------------------------------------------------------------------------------—
This rational polynomial does not automatically grow as a result of operations like its sibling: controlpp::TransferFunction
- See also
- controlpp::TransferFunction