Vespucci  1.0.0
whittaker.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 #ifndef WHITTAKER_H
27 #define WHITTAKER_H
28 namespace Vespucci{
29  namespace Math{
30  namespace Smoothing{
31  VESPUCCI_EXPORT arma::vec WhittakerSmooth(const arma::vec &x, double lambda, arma::uword penalty_order);
32  }
33  }
34 }
35 #endif // WHITTAKER_H
VESPUCCI_EXPORT arma::vec WhittakerSmooth(const arma::vec &x, double lambda, arma::uword penalty_order)
Vespucci::Math::WhittakerSmooth.
Definition: whittaker.cpp:31
#define VESPUCCI_EXPORT
Definition: libvespucci.h:7
A namespace for "global" functions, including math functions.