ccgsl 2.7.2
C++wrappersforGnuScientificLibrary
sf_zeta.hpp
Go to the documentation of this file.
1/*
2 * $Id: sf_zeta.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_ZETA_HPP
21#define CCGSL_SF_ZETA_HPP
22
23#include<gsl/gsl_sf_zeta.h>
24#include"mode.hpp"
25#include"sf_result.hpp"
26
27namespace gsl {
28 namespace sf {
39 inline int zeta_int_e( int const n, result& result ){
40 return gsl_sf_zeta_int_e( n, &result ); }
50 inline double zeta_int( int const n ){ return gsl_sf_zeta_int( n ); }
61 inline int zeta_e( double const s, result& result ){
62 return gsl_sf_zeta_e( s, &result ); }
72 inline double zeta( double const s ){ return gsl_sf_zeta( s ); }
84 inline int zetam1_e( double const s, result& result ){
85 return gsl_sf_zetam1_e( s, &result ); }
96 inline double zetam1( double const s ){ return gsl_sf_zetam1( s ); }
108 inline int zetam1_int_e( int const s, result& result ){
109 return gsl_sf_zetam1_int_e( s, &result ); }
120 inline double zetam1_int( int const s ){ return gsl_sf_zetam1_int( s ); }
132 inline int hzeta_e( double const s, double const q, result& result ){
133 return gsl_sf_hzeta_e( s, q, &result ); }
144 inline double hzeta( double const s, double const q ){
145 return gsl_sf_hzeta( s, q ); }
154 inline int eta_int_e( int n, result& result ){
155 return gsl_sf_eta_int_e( n, &result ); }
163 inline double eta_int( int const n ){ return gsl_sf_eta_int( n ); }
172 inline int eta_e( double const s, result& result ){
173 return gsl_sf_eta_e( s, &result ); }
181 inline double eta( double const s ){ return gsl_sf_eta( s ); }
182 }
183}
184
185#endif
size_t n(workspace const &w)
C++ version of gsl_rstat_n().
Definition: rstat.hpp:299
double eta(double const s)
C++ version of gsl_sf_eta().
Definition: sf_zeta.hpp:181
double eta_int(int const n)
C++ version of gsl_sf_eta_int().
Definition: sf_zeta.hpp:163
double zeta(double const s)
C++ version of gsl_sf_zeta().
Definition: sf_zeta.hpp:72
double zeta_int(int const n)
C++ version of gsl_sf_zeta_int().
Definition: sf_zeta.hpp:50
int hzeta_e(double const s, double const q, result &result)
C++ version of gsl_sf_hzeta_e().
Definition: sf_zeta.hpp:132
int zeta_int_e(int const n, result &result)
C++ version of gsl_sf_zeta_int_e().
Definition: sf_zeta.hpp:39
double zetam1(double const s)
C++ version of gsl_sf_zetam1().
Definition: sf_zeta.hpp:96
int zetam1_int_e(int const s, result &result)
C++ version of gsl_sf_zetam1_int_e().
Definition: sf_zeta.hpp:108
int zetam1_e(double const s, result &result)
C++ version of gsl_sf_zetam1_e().
Definition: sf_zeta.hpp:84
int eta_int_e(int n, result &result)
C++ version of gsl_sf_eta_int_e().
Definition: sf_zeta.hpp:154
int eta_e(double const s, result &result)
C++ version of gsl_sf_eta_e().
Definition: sf_zeta.hpp:172
double zetam1_int(int const s)
C++ version of gsl_sf_zetam1_int().
Definition: sf_zeta.hpp:120
double hzeta(double const s, double const q)
C++ version of gsl_sf_hzeta().
Definition: sf_zeta.hpp:144
int zeta_e(double const s, result &result)
C++ version of gsl_sf_zeta_e().
Definition: sf_zeta.hpp:61
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