Vespucci  1.0.0
nonlinear.h
Go to the documentation of this file.
1 
2 /*******************************************************************************
3  Copyright (C) 2014-2016 Wright State University - All Rights Reserved
4  Daniel P. Foose - Maintainer/Lead Developer
5 
6  This file is part of Vespucci.
7 
8  Vespucci is free software: you can redistribute it and/or modify
9  it under the terms of the GNU General Public License as published by
10  the Free Software Foundation, either version 3 of the License, or
11  (at your option) any later version.
12 
13  Vespucci is distributed in the hope that it will be useful,
14  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  GNU General Public License for more details.
17 
18  You should have received a copy of the GNU General Public License
19  along with Vespucci. If not, see <http://www.gnu.org/licenses/>.
20 *******************************************************************************/
21 #if !defined( SWIG )
22  // SWIG should not see #inlcude<armadillo> as it can not handle it
23  #include "Math/VespucciMath.h"
24  #include "Global/libvespucci.h"
25 #endif
26 
27 #ifndef NONLINEAR_H
28 #define NONLINEAR_H
29 
30 namespace Vespucci{
31  namespace Math{
32  namespace Smoothing{
33  VESPUCCI_EXPORT arma::vec MedianFilter(const arma::vec &X, arma::uword window_size);
34  VESPUCCI_EXPORT arma::mat MedianFilterMat(const arma::mat &X, arma::uword window_size);
35  }
36  }
37 }
38 
39 #endif // NONLINEAR_H
VESPUCCI_EXPORT arma::vec MedianFilter(const arma::vec &X, arma::uword window_size)
Vespucci::Math::Smoothing::MedianFilter.
Definition: nonlinear.cpp:30
VESPUCCI_EXPORT arma::mat MedianFilterMat(const arma::mat &X, arma::uword window_size)
Vespucci::Math::Smoothing::MedianFilterMat.
Definition: nonlinear.cpp:61
#define VESPUCCI_EXPORT
Definition: libvespucci.h:7
A namespace for "global" functions, including math functions.