Problem Description
There was a discrepancy of method naming of the tiltwing model compared to other models.
Proposed Solution
This commit enforces that prepare_regression_matrices are implemented in children classes of dynamics_model class by raising a notImplemented exception if the method doesn't exist. This is trying to enforce a virtual function as in cpp
Problem Description There was a discrepancy of method naming of the tiltwing model compared to other models.
Proposed Solution This commit enforces that prepare_regression_matrices are implemented in children classes of dynamics_model class by raising a
notImplemented
exception if the method doesn't exist. This is trying to enforce avirtual
function as in cpp