Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sot-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
sot-core
Commits
e45a453c
Commit
e45a453c
authored
5 years ago
by
Olivier Stasse
Committed by
olivier stasse
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[filters] Add namespace for causal-filter.
Add protection against multiple inclusion.
parent
76a48535
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/sot/core/causal-filter.hh
+52
-44
52 additions, 44 deletions
include/sot/core/causal-filter.hh
src/filters/causal-filter.cpp
+1
-1
1 addition, 1 deletion
src/filters/causal-filter.cpp
with
53 additions
and
45 deletions
include/sot/core/causal-filter.hh
+
52
−
44
View file @
e45a453c
#ifndef _SOT_CORE_CAUSAL_FILTER_H_
#define _SOT_CORE_CAUSAL_FILTER_H_
/*
* Copyright 2017-, Rohan Budhirja, LAAS-CNRS
*
...
...
@@ -39,48 +41,54 @@
*/
class
CausalFilter
{
public:
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
/** --- CONSTRUCTOR ----
\param[in] timestep
\param[in] xSize
\param[in] filter_numerator
\param[in] filter_denominator
namespace
dynamicgraph
{
namespace
sot
{
class
CausalFilter
{
public:
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
xSize is
*/
CausalFilter
(
const
double
&
timestep
,
const
int
&
xSize
,
const
Eigen
::
VectorXd
&
filter_numerator
,
const
Eigen
::
VectorXd
&
filter_denominator
);
void
get_x_dx_ddx
(
const
Eigen
::
VectorXd
&
base_x
,
Eigen
::
VectorXd
&
x_output_dx_ddx
);
void
switch_filter
(
const
Eigen
::
VectorXd
&
filter_numerator
,
const
Eigen
::
VectorXd
&
filter_denominator
);
private:
/// sampling timestep of the input signal
double
m_dt
;
/// Size
int
m_x_size
;
/// Size of the numerator \f$m\f$
Eigen
::
Index
m_filter_order_m
;
/// Size of the denominator \f$n\f$
Eigen
::
Index
m_filter_order_n
;
/// Coefficients of the numerator \f$b\f$
Eigen
::
VectorXd
m_filter_numerator
;
/// Coefficients of the denominator \f$a\f$
Eigen
::
VectorXd
m_filter_denominator
;
bool
m_first_sample
;
///
int
m_pt_numerator
;
int
m_pt_denominator
;
Eigen
::
MatrixXd
m_input_buffer
;
Eigen
::
MatrixXd
m_output_buffer
;
};
// class CausalFilter
/** --- CONSTRUCTOR ----
\param[in] timestep
\param[in] xSize
\param[in] filter_numerator
\param[in] filter_denominator
xSize is
*/
CausalFilter
(
const
double
&
timestep
,
const
int
&
xSize
,
const
Eigen
::
VectorXd
&
filter_numerator
,
const
Eigen
::
VectorXd
&
filter_denominator
);
void
get_x_dx_ddx
(
const
Eigen
::
VectorXd
&
base_x
,
Eigen
::
VectorXd
&
x_output_dx_ddx
);
void
switch_filter
(
const
Eigen
::
VectorXd
&
filter_numerator
,
const
Eigen
::
VectorXd
&
filter_denominator
);
private:
/// sampling timestep of the input signal
double
m_dt
;
/// Size
int
m_x_size
;
/// Size of the numerator \f$m\f$
Eigen
::
Index
m_filter_order_m
;
/// Size of the denominator \f$n\f$
Eigen
::
Index
m_filter_order_n
;
/// Coefficients of the numerator \f$b\f$
Eigen
::
VectorXd
m_filter_numerator
;
/// Coefficients of the denominator \f$a\f$
Eigen
::
VectorXd
m_filter_denominator
;
bool
m_first_sample
;
///
int
m_pt_numerator
;
int
m_pt_denominator
;
Eigen
::
MatrixXd
m_input_buffer
;
Eigen
::
MatrixXd
m_output_buffer
;
};
// class CausalFilter
}
/// core
}
/// sot
#endif
/* _SOT_CORE_CAUSAL_FILTER_H_ */
This diff is collapsed.
Click to expand it.
src/filters/causal-filter.cpp
+
1
−
1
View file @
e45a453c
...
...
@@ -19,7 +19,7 @@
#include
<sot/core/causal-filter.hh>
using
namespace
dynamicgraph
::
sot
;
/*
Filter data with an IIR or FIR filter.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment