ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
sf_laguerre.hpp
Go to the documentation of this file.
1/*
2 * $Id: sf_laguerre.hpp 9 2010-06-13 14:02:43Z jdl3 $
3 * Copyright (C) 2010 John D Lamb
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or (at
8 * your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20#ifndef CCGSL_SF_LAGUERRE_HPP
21#define CCGSL_SF_LAGUERRE_HPP
22
23#include<gsl/gsl_sf_laguerre.h>
24#include"mode.hpp"
25#include"sf_result.hpp"
26
27namespace gsl {
28 namespace sf {
37 inline int laguerre_1_e( double const a, double const x, result& result ){
38 return gsl_sf_laguerre_1_e( a, x, &result ); }
47 inline int laguerre_2_e( double const a, double const x, result& result ){
48 return gsl_sf_laguerre_2_e( a, x, &result ); }
57 inline int laguerre_3_e( double const a, double const x, result& result ){
58 return gsl_sf_laguerre_3_e( a, x, &result ); }
66 inline double laguerre_1( double a, double x ){ return gsl_sf_laguerre_1( a, x ); }
74 inline double laguerre_2( double a, double x ){ return gsl_sf_laguerre_2( a, x ); }
82 inline double laguerre_3( double a, double x ){ return gsl_sf_laguerre_3( a, x ); }
95 inline int laguerre_n_e( int const n, double const a, double const x, result& result ){
96 return gsl_sf_laguerre_n_e( n, a, x, &result ); }
108 inline double laguerre_n( int n, double a, double x ){ return gsl_sf_laguerre_n( n, a, x ); }
109 }
110}
111
112#endif
size_t n(workspace const &w)
C++ version of gsl_rstat_n().
Definition: rstat.hpp:299
double a(int order, double qq)
C++ version of gsl_sf_mathieu_a().
Definition: sf_mathieu.hpp:272
double laguerre_2(double a, double x)
C++ version of gsl_sf_laguerre_2().
Definition: sf_laguerre.hpp:74
double laguerre_3(double a, double x)
C++ version of gsl_sf_laguerre_3().
Definition: sf_laguerre.hpp:82
int laguerre_3_e(double const a, double const x, result &result)
C++ version of gsl_sf_laguerre_3_e().
Definition: sf_laguerre.hpp:57
int laguerre_n_e(int const n, double const a, double const x, result &result)
C++ version of gsl_sf_laguerre_n_e().
Definition: sf_laguerre.hpp:95
int laguerre_2_e(double const a, double const x, result &result)
C++ version of gsl_sf_laguerre_2_e().
Definition: sf_laguerre.hpp:47
double laguerre_1(double a, double x)
C++ version of gsl_sf_laguerre_1().
Definition: sf_laguerre.hpp:66
double laguerre_n(int n, double a, double x)
C++ version of gsl_sf_laguerre_n().
int laguerre_1_e(double const a, double const x, result &result)
C++ version of gsl_sf_laguerre_1_e().
Definition: sf_laguerre.hpp:37
gsl_sf_result result
Typedef for gsl_sf_result.
Definition: sf_result.hpp:30
The gsl package creates an interface to the GNU Scientific Library for C++.
Definition: blas.hpp:34