FirFilter.cpp
Go to the documentation of this file.
1/*
2 * This file is part of ArmarX.
3 *
4 * Copyright (C) 2012-2016, High Performance Humanoid Technologies (H2T),
5 * Karlsruhe Institute of Technology (KIT), all rights reserved.
6 *
7 * ArmarX is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * ArmarX is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * @author Simon Ottenhaus (simon dot ottenhaus at kit dot edu)
20 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
21 * GNU General Public License
22 */
23
24#include "FirFilter.h"
25
27{
28 FirFilter::FirFilter(const std::vector<float>& impulseResponse) :
29 impulseResponse(impulseResponse),
30 values(impulseResponse.size(), 0.0f),
31 index(0),
32 size(impulseResponse.size())
33 {
34 }
35
36 void
37 FirFilter::setImpulseResponse(const std::vector<float>& impulseResponse)
38 {
39 this->impulseResponse = impulseResponse;
40 this->index = 0;
41 this->size = impulseResponse.size();
42 this->values = std::vector<float>(size, 0);
43 }
44
45 float
46 FirFilter::update(float value)
47 {
48 index = (index + size - 1) % size;
49 values.at(index) = value;
50 float response = 0;
51 for (size_t i = 0; i < size; i++)
52 {
53 response += values.at((i + index) % size) * impulseResponse.at(i);
54 }
55 return response;
56 }
57} // namespace armarx::control::rt_filters
FirFilter(const std::vector< float > &impulseResponse={1})
Definition FirFilter.cpp:28
void setImpulseResponse(const std::vector< float > &impulseResponse)
Definition FirFilter.cpp:37