// gsl_sf_hermite.h //*----------------------------------------------------------------------* //* This program is free software: you can redistribute it and/or modify * //* it under the terms of the GNU General Public License as published by * //* the Free Software Foundation, either version 3 of the License, or * //* (at your option) any later version. * //* * //* This program is distributed in the hope that it will be useful, * //* but WITHOUT ANY WARRANTY; without even the implied warranty of * //* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * //* GNU General Public License for more details. * //* * //* You should have received a copy of the GNU General Public License * //* along with this program. If not, see . * //*----------------------------------------------------------------------* //*----------------------------------------------------------------------* //* Copyright 2013 Konrad Griessinger * //* (konradg(at)gmx.net) * //*----------------------------------------------------------------------* #ifndef __GSL_SF_HERMITE_H__ #define __GSL_SF_HERMITE_H__ #include #undef __BEGIN_DECLS #undef __END_DECLS #ifdef __cplusplus # define __BEGIN_DECLS extern "C" { # define __END_DECLS } #else # define __BEGIN_DECLS /* empty */ # define __END_DECLS /* empty */ #endif __BEGIN_DECLS int gsl_sf_hermite_prob_e(const int n, const double x, gsl_sf_result * result); double gsl_sf_hermite_prob(const int n, const double x); int gsl_sf_hermite_prob_der_e(const int m, const int n, const double x, gsl_sf_result * result); double gsl_sf_hermite_prob_der(const int m, const int n, const double x); int gsl_sf_hermite_phys_e(const int n, const double x, gsl_sf_result * result); double gsl_sf_hermite_phys(const int n, const double x); int gsl_sf_hermite_phys_der_e(const int m, const int n, const double x, gsl_sf_result * result); double gsl_sf_hermite_phys_der(const int m, const int n, const double x); int gsl_sf_hermite_func_e(const int n, const double x, gsl_sf_result * result); double gsl_sf_hermite_func(const int n, const double x); int gsl_sf_hermite_prob_array(const int nmax, const double x, double * result_array); int gsl_sf_hermite_prob_array_der(const int m, const int nmax, const double x, double * result_array); int gsl_sf_hermite_prob_der_array(const int mmax, const int n, const double x, double * result_array); int gsl_sf_hermite_prob_series_e(const int n, const double x, const double * a, gsl_sf_result * result); double gsl_sf_hermite_prob_series(const int n, const double x, const double * a); int gsl_sf_hermite_phys_array(const int nmax, const double x, double * result_array); int gsl_sf_hermite_phys_array_der(const int m, const int nmax, const double x, double * result_array); int gsl_sf_hermite_phys_der_array(const int mmax, const int n, const double x, double * result_array); int gsl_sf_hermite_phys_series_e(const int n, const double x, const double * a, gsl_sf_result * result); double gsl_sf_hermite_phys_series(const int n, const double x, const double * a); int gsl_sf_hermite_func_array(const int nmax, const double x, double * result_array); int gsl_sf_hermite_func_series_e(const int n, const double x, const double * a, gsl_sf_result * result); double gsl_sf_hermite_func_series(const int n, const double x, const double * a); int gsl_sf_hermite_func_der_e(const int m, const int n, const double x, gsl_sf_result * result); double gsl_sf_hermite_func_der(const int m, const int n, const double x); __END_DECLS #endif /* __GSL_SF_HERMITE_H__ */