Blame specfunc/gsl_sf_hermite.h

Packit 67cb25
/* gsl_sf_hermite.h
Packit 67cb25
 * 
Packit 67cb25
 * Copyright (C) 2011-2014 Konrad Griessinger
Packit 67cb25
 * 
Packit 67cb25
 * This program is free software; you can redistribute it and/or modify
Packit 67cb25
 * it under the terms of the GNU General Public License as published by
Packit 67cb25
 * the Free Software Foundation; either version 3 of the License, or (at
Packit 67cb25
 * your option) any later version.
Packit 67cb25
 * 
Packit 67cb25
 * This program is distributed in the hope that it will be useful, but
Packit 67cb25
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 67cb25
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 67cb25
 * General Public License for more details.
Packit 67cb25
 * 
Packit 67cb25
 * You should have received a copy of the GNU General Public License
Packit 67cb25
 * along with this program; if not, write to the Free Software
Packit 67cb25
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit 67cb25
 */
Packit 67cb25

Packit 67cb25
/*----------------------------------------------------------------------*
Packit 67cb25
 * (konradg(at)gmx.net)                                                 *
Packit 67cb25
 *----------------------------------------------------------------------*/
Packit 67cb25

Packit 67cb25
#ifndef __GSL_SF_HERMITE_H__
Packit 67cb25
#define __GSL_SF_HERMITE_H__
Packit 67cb25

Packit 67cb25
#include <gsl/gsl_sf_result.h>
Packit 67cb25

Packit 67cb25
#undef __BEGIN_DECLS
Packit 67cb25
#undef __END_DECLS
Packit 67cb25
#ifdef __cplusplus
Packit 67cb25
# define __BEGIN_DECLS extern "C" {
Packit 67cb25
# define __END_DECLS }
Packit 67cb25
#else
Packit 67cb25
# define __BEGIN_DECLS /* empty */
Packit 67cb25
# define __END_DECLS /* empty */
Packit 67cb25
#endif
Packit 67cb25

Packit 67cb25
__BEGIN_DECLS
Packit 67cb25

Packit 67cb25
int gsl_sf_hermite_prob_e(const int n, const double x, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_prob(const int n, const double x);
Packit 67cb25
int gsl_sf_hermite_prob_der_e(const int m, const int n, const double x, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_prob_der(const int m, const int n, const double x);
Packit 67cb25
int gsl_sf_hermite_phys_e(const int n, const double x, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_phys(const int n, const double x);
Packit 67cb25
int gsl_sf_hermite_phys_der_e(const int m, const int n, const double x, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_phys_der(const int m, const int n, const double x);
Packit 67cb25
int gsl_sf_hermite_func_e(const int n, const double x, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_func(const int n, const double x);
Packit 67cb25
int gsl_sf_hermite_prob_array(const int nmax, const double x, double * result_array);
Packit 67cb25
int gsl_sf_hermite_prob_array_der(const int m, const int nmax, const double x, double * result_array);
Packit 67cb25
int gsl_sf_hermite_prob_der_array(const int mmax, const int n, const double x, double * result_array);
Packit 67cb25
int gsl_sf_hermite_prob_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_prob_series(const int n, const double x, const double * a);
Packit 67cb25
int gsl_sf_hermite_phys_array(const int nmax, const double x, double * result_array);
Packit 67cb25
int gsl_sf_hermite_phys_array_der(const int m, const int nmax, const double x, double * result_array);
Packit 67cb25
int gsl_sf_hermite_phys_der_array(const int mmax, const int n, const double x, double * result_array);
Packit 67cb25
int gsl_sf_hermite_phys_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_phys_series(const int n, const double x, const double * a);
Packit 67cb25
int gsl_sf_hermite_func_array(const int nmax, const double x, double * result_array);
Packit 67cb25
int gsl_sf_hermite_func_series_e(const int n, const double x, const double * a, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_func_series(const int n, const double x, const double * a);
Packit 67cb25
int gsl_sf_hermite_func_der_e(const int m, const int n, const double x, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_func_der(const int m, const int n, const double x);
Packit 67cb25
int gsl_sf_hermite_prob_zero_e(const int n, const int s, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_prob_zero(const int n, const int s);
Packit 67cb25
int gsl_sf_hermite_phys_zero_e(const int n, const int s, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_phys_zero(const int n, const int s);
Packit 67cb25
int gsl_sf_hermite_func_zero_e(const int n, const int s, gsl_sf_result * result);
Packit 67cb25
double gsl_sf_hermite_func_zero(const int n, const int s);
Packit 67cb25

Packit 67cb25
__END_DECLS
Packit 67cb25

Packit 67cb25
#endif /* __GSL_SF_HERMITE_H__ */