1/* gsl_sf_hermite.h
2 *
3 * Copyright (C) 2011-2014 Konrad Griessinger
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 3 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 */
19
20/*----------------------------------------------------------------------*
21 * (konradg(at)gmx.net) *
22 *----------------------------------------------------------------------*/
23
24#ifndef __GSL_SF_HERMITE_H__
25#define __GSL_SF_HERMITE_H__
26
27#include <gsl/gsl_sf_result.h>
28
29#undef __BEGIN_DECLS
30#undef __END_DECLS
31#ifdef __cplusplus
32# define __BEGIN_DECLS extern "C" {
33# define __END_DECLS }
34#else
35# define __BEGIN_DECLS /* empty */
36# define __END_DECLS /* empty */
37#endif
38
39__BEGIN_DECLS
40
41int gsl_sf_hermite_prob_e(const int n, const double x, gsl_sf_result * result);
42double gsl_sf_hermite_prob(const int n, const double x);
43int gsl_sf_hermite_prob_deriv_e(const int m, const int n, const double x, gsl_sf_result * result);
44double gsl_sf_hermite_prob_deriv(const int m, const int n, const double x);
45int gsl_sf_hermite_e(const int n, const double x, gsl_sf_result * result);
46double gsl_sf_hermite(const int n, const double x);
47int gsl_sf_hermite_deriv_e(const int m, const int n, const double x, gsl_sf_result * result);
48double gsl_sf_hermite_deriv(const int m, const int n, const double x);
49int gsl_sf_hermite_func_e(const int n, const double x, gsl_sf_result * result);
50double gsl_sf_hermite_func(const int n, const double x);
51int gsl_sf_hermite_func_fast_e(const int n, const double x, gsl_sf_result * result);
52double gsl_sf_hermite_func_fast(const int n, const double x);
53int gsl_sf_hermite_prob_array(const int nmax, const double x, double * result_array);
54int gsl_sf_hermite_prob_array_deriv(const int m, const int nmax, const double x, double * result_array);
55int gsl_sf_hermite_prob_deriv_array(const int mmax, const int n, const double x, double * result_array);
56int gsl_sf_hermite_prob_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
57double gsl_sf_hermite_prob_series(const int n, const double x, const double * a);
58int gsl_sf_hermite_array(const int nmax, const double x, double * result_array);
59int gsl_sf_hermite_array_deriv(const int m, const int nmax, const double x, double * result_array);
60int gsl_sf_hermite_deriv_array(const int mmax, const int n, const double x, double * result_array);
61int gsl_sf_hermite_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
62double gsl_sf_hermite_series(const int n, const double x, const double * a);
63int gsl_sf_hermite_func_array(const int nmax, const double x, double * result_array);
64int gsl_sf_hermite_func_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
65double gsl_sf_hermite_func_series(const int n, const double x, const double * a);
66int gsl_sf_hermite_func_der_e(const int m, const int n, const double x, gsl_sf_result * result);
67double gsl_sf_hermite_func_der(const int m, const int n, const double x);
68int gsl_sf_hermite_prob_zero_e(const int n, const int s, gsl_sf_result * result);
69double gsl_sf_hermite_prob_zero(const int n, const int s);
70int gsl_sf_hermite_zero_e(const int n, const int s, gsl_sf_result * result);
71double gsl_sf_hermite_zero(const int n, const int s);
72int gsl_sf_hermite_func_zero_e(const int n, const int s, gsl_sf_result * result);
73double gsl_sf_hermite_func_zero(const int n, const int s);
74
75#ifndef GSL_DISABLE_DEPRECATED
76
77int gsl_sf_hermite_phys_e(const int n, const double x, gsl_sf_result * result);
78double gsl_sf_hermite_phys(const int n, const double x);
79int gsl_sf_hermite_phys_der_e(const int m, const int n, const double x, gsl_sf_result * result);
80double gsl_sf_hermite_phys_der(const int m, const int n, const double x);
81int gsl_sf_hermite_phys_array(const int nmax, const double x, double * result_array);
82int gsl_sf_hermite_phys_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
83double gsl_sf_hermite_phys_series(const int n, const double x, const double * a);
84int gsl_sf_hermite_phys_array_der(const int m, const int nmax, const double x, double * result_array);
85int gsl_sf_hermite_phys_der_array(const int mmax, const int n, const double x, double * result_array);
86int gsl_sf_hermite_phys_zero_e(const int n, const int s, gsl_sf_result * result);
87double gsl_sf_hermite_phys_zero(const int n, const int s);
88
89int gsl_sf_hermite_prob_array_der(const int m, const int nmax, const double x, double * result_array);
90int gsl_sf_hermite_prob_der_array(const int mmax, const int n, const double x, double * result_array);
91int gsl_sf_hermite_prob_der_e(const int m, const int n, const double x, gsl_sf_result * result);
92double gsl_sf_hermite_prob_der(const int m, const int n, const double x);
93
94#endif /* !GSL_DISABLE_DEPRECATED */
95
96__END_DECLS
97
98#endif /* __GSL_SF_HERMITE_H__ */
99