Documentation
Tools for embedded systems
Loading...
Searching...
No Matches
qlibs::continuousTF< order > Struct Template Reference

Continuous transfer function for easy LTI system definition. More...

#include <ltisys.hpp>

Public Member Functions

 continuousTF (const real_t(&numerator)[order+1], const real_t(&denominator)[order+1])
 Constructor for the continuousTF class.
 

Detailed Description

template<size_t order>
struct qlibs::continuousTF< order >

Continuous transfer function for easy LTI system definition.

Note
Initial conditions are zero by default.
Template Parameters
orderThe continuous system order

Constructor & Destructor Documentation

◆ continuousTF()

template<size_t order>
qlibs::continuousTF< order >::continuousTF ( const real_t(&) numerator[order+1],
const real_t(&) denominator[order+1] )
inline

Constructor for the continuousTF class.

Parameters
[in]numeratorAn array of size <order> with the coefficients of the numerator in descending powers of s.
[in]denominatorAn array of size <order> with the coefficients of the denominator in descending powers of s.