|
RCAC C++
|
#include <RCAC.hpp>
Public Attributes | |
| Eigen::MatrixXd | filtNu |
| Eigen::MatrixXd | filtDu |
| Eigen::MatrixXd | filtNz |
| Eigen::MatrixXd | filtDz |
This struct contains the filter coefficients. This struct should not need to be overloaded unless a big change in the algorithm is needed i.e. all types of RCAC will use this same struct.
| filtNu | Matrix containing the numerator coefficients of ( ). Should be dimension lz by lu*filtorder |
| filtDu | Matrix containing the denominator coefficients of ( ). Dimension lz by lu*(filtorder-1) |
| filtNz | Matrix containing the numerator coefficients of a filter for the performance measurement. Not currently used in any computations but is required! (set as identity matrix) . Dimension lz by lz |
| filtDz | Matrix containing the denominator coefficients of a filter for the performance measurement. Not currently used in any computations but is required! (set as zero matrix) . Dimension lz by lz |