| 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 |
|
| 41 | int gsl_sf_hermite_prob_e(const int n, const double x, gsl_sf_result * result);
|
| 42 | double gsl_sf_hermite_prob(const int n, const double x);
|
| 43 | int gsl_sf_hermite_prob_deriv_e(const int m, const int n, const double x, gsl_sf_result * result);
|
| 44 | double gsl_sf_hermite_prob_deriv(const int m, const int n, const double x);
|
| 45 | int gsl_sf_hermite_e(const int n, const double x, gsl_sf_result * result);
|
| 46 | double gsl_sf_hermite(const int n, const double x);
|
| 47 | int gsl_sf_hermite_deriv_e(const int m, const int n, const double x, gsl_sf_result * result);
|
| 48 | double gsl_sf_hermite_deriv(const int m, const int n, const double x);
|
| 49 | int gsl_sf_hermite_func_e(const int n, const double x, gsl_sf_result * result);
|
| 50 | double gsl_sf_hermite_func(const int n, const double x);
|
| 51 | int gsl_sf_hermite_func_fast_e(const int n, const double x, gsl_sf_result * result);
|
| 52 | double gsl_sf_hermite_func_fast(const int n, const double x);
|
| 53 | int gsl_sf_hermite_prob_array(const int nmax, const double x, double * result_array);
|
| 54 | int gsl_sf_hermite_prob_array_deriv(const int m, const int nmax, const double x, double * result_array);
|
| 55 | int gsl_sf_hermite_prob_deriv_array(const int mmax, const int n, const double x, double * result_array);
|
| 56 | int gsl_sf_hermite_prob_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
|
| 57 | double gsl_sf_hermite_prob_series(const int n, const double x, const double * a);
|
| 58 | int gsl_sf_hermite_array(const int nmax, const double x, double * result_array);
|
| 59 | int gsl_sf_hermite_array_deriv(const int m, const int nmax, const double x, double * result_array);
|
| 60 | int gsl_sf_hermite_deriv_array(const int mmax, const int n, const double x, double * result_array);
|
| 61 | int gsl_sf_hermite_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
|
| 62 | double gsl_sf_hermite_series(const int n, const double x, const double * a);
|
| 63 | int gsl_sf_hermite_func_array(const int nmax, const double x, double * result_array);
|
| 64 | int gsl_sf_hermite_func_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
|
| 65 | double gsl_sf_hermite_func_series(const int n, const double x, const double * a);
|
| 66 | int gsl_sf_hermite_func_der_e(const int m, const int n, const double x, gsl_sf_result * result);
|
| 67 | double gsl_sf_hermite_func_der(const int m, const int n, const double x);
|
| 68 | int gsl_sf_hermite_prob_zero_e(const int n, const int s, gsl_sf_result * result);
|
| 69 | double gsl_sf_hermite_prob_zero(const int n, const int s);
|
| 70 | int gsl_sf_hermite_zero_e(const int n, const int s, gsl_sf_result * result);
|
| 71 | double gsl_sf_hermite_zero(const int n, const int s);
|
| 72 | int gsl_sf_hermite_func_zero_e(const int n, const int s, gsl_sf_result * result);
|
| 73 | double gsl_sf_hermite_func_zero(const int n, const int s);
|
| 74 |
|
| 75 | #ifndef GSL_DISABLE_DEPRECATED
|
| 76 |
|
| 77 | int gsl_sf_hermite_phys_e(const int n, const double x, gsl_sf_result * result);
|
| 78 | double gsl_sf_hermite_phys(const int n, const double x);
|
| 79 | int gsl_sf_hermite_phys_der_e(const int m, const int n, const double x, gsl_sf_result * result);
|
| 80 | double gsl_sf_hermite_phys_der(const int m, const int n, const double x);
|
| 81 | int gsl_sf_hermite_phys_array(const int nmax, const double x, double * result_array);
|
| 82 | int gsl_sf_hermite_phys_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
|
| 83 | double gsl_sf_hermite_phys_series(const int n, const double x, const double * a);
|
| 84 | int gsl_sf_hermite_phys_array_der(const int m, const int nmax, const double x, double * result_array);
|
| 85 | int gsl_sf_hermite_phys_der_array(const int mmax, const int n, const double x, double * result_array);
|
| 86 | int gsl_sf_hermite_phys_zero_e(const int n, const int s, gsl_sf_result * result);
|
| 87 | double gsl_sf_hermite_phys_zero(const int n, const int s);
|
| 88 |
|
| 89 | int gsl_sf_hermite_prob_array_der(const int m, const int nmax, const double x, double * result_array);
|
| 90 | int gsl_sf_hermite_prob_der_array(const int mmax, const int n, const double x, double * result_array);
|
| 91 | int gsl_sf_hermite_prob_der_e(const int m, const int n, const double x, gsl_sf_result * result);
|
| 92 | double 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 | |