yat/regression/AkimaInterpolation.cc

Code
Comments
Other
Rev Date Author Line
193 27 Oct 04 peter 1 // $Id$
193 27 Oct 04 peter 2
675 10 Oct 06 jari 3 /*
4359 23 Aug 23 peter 4   Copyright (C) 2004, 2005, 2006 Jari Häkkinen, Peter Johansson
4359 23 Aug 23 peter 5   Copyright (C) 2007 Peter Johansson
4359 23 Aug 23 peter 6   Copyright (C) 2008 Jari Häkkinen, Peter Johansson
2919 19 Dec 12 peter 7   Copyright (C) 2012 Peter Johansson
193 27 Oct 04 peter 8
1437 25 Aug 08 peter 9   This file is part of the yat library, http://dev.thep.lu.se/yat
193 27 Oct 04 peter 10
675 10 Oct 06 jari 11   The yat library is free software; you can redistribute it and/or
675 10 Oct 06 jari 12   modify it under the terms of the GNU General Public License as
1486 09 Sep 08 jari 13   published by the Free Software Foundation; either version 3 of the
675 10 Oct 06 jari 14   License, or (at your option) any later version.
675 10 Oct 06 jari 15
675 10 Oct 06 jari 16   The yat library is distributed in the hope that it will be useful,
675 10 Oct 06 jari 17   but WITHOUT ANY WARRANTY; without even the implied warranty of
675 10 Oct 06 jari 18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
675 10 Oct 06 jari 19   General Public License for more details.
675 10 Oct 06 jari 20
675 10 Oct 06 jari 21   You should have received a copy of the GNU General Public License
1487 10 Sep 08 jari 22   along with yat. If not, see <http://www.gnu.org/licenses/>.
675 10 Oct 06 jari 23 */
675 10 Oct 06 jari 24
2881 18 Nov 12 peter 25 #include <config.h>
2881 18 Nov 12 peter 26
1647 13 Dec 08 jari 27 #include "AkimaInterpolation.h"
675 10 Oct 06 jari 28
1643 13 Dec 08 jari 29 #include <gsl/gsl_interp.h>
1643 13 Dec 08 jari 30
193 27 Oct 04 peter 31 namespace theplu {
680 11 Oct 06 jari 32 namespace yat {
383 12 Aug 05 jari 33 namespace regression {
193 27 Oct 04 peter 34
703 18 Dec 06 jari 35
1647 13 Dec 08 jari 36   AkimaInterpolation::AkimaInterpolation(const utility::VectorBase& x,
1647 13 Dec 08 jari 37                                          const utility::VectorBase& y)
1647 13 Dec 08 jari 38     : GSLInterpolation(gsl_interp_akima,x,y)
703 18 Dec 06 jari 39   {
703 18 Dec 06 jari 40   }
713 21 Dec 06 peter 41
718 26 Dec 06 jari 42
1647 13 Dec 08 jari 43   AkimaInterpolation::~AkimaInterpolation(void)
718 26 Dec 06 jari 44   {
718 26 Dec 06 jari 45   }
718 26 Dec 06 jari 46
718 26 Dec 06 jari 47
681 11 Oct 06 jari 48 }}} // of namespaces regression, yat, and theplu