Warning, file /include/gsl/gsl_sf_log.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #ifndef __GSL_SF_LOG_H__
0023 #define __GSL_SF_LOG_H__
0024
0025 #include <gsl/gsl_sf_result.h>
0026
0027 #undef __BEGIN_DECLS
0028 #undef __END_DECLS
0029 #ifdef __cplusplus
0030 # define __BEGIN_DECLS extern "C" {
0031 # define __END_DECLS }
0032 #else
0033 # define __BEGIN_DECLS
0034 # define __END_DECLS
0035 #endif
0036
0037 __BEGIN_DECLS
0038
0039
0040
0041
0042
0043
0044 int gsl_sf_log_e(const double x, gsl_sf_result * result);
0045 double gsl_sf_log(const double x);
0046
0047
0048
0049
0050
0051
0052 int gsl_sf_log_abs_e(const double x, gsl_sf_result * result);
0053 double gsl_sf_log_abs(const double x);
0054
0055
0056
0057
0058
0059
0060
0061
0062 int gsl_sf_complex_log_e(const double zr, const double zi, gsl_sf_result * lnr, gsl_sf_result * theta);
0063
0064
0065
0066
0067
0068
0069 int gsl_sf_log_1plusx_e(const double x, gsl_sf_result * result);
0070 double gsl_sf_log_1plusx(const double x);
0071
0072
0073
0074
0075
0076
0077 int gsl_sf_log_1plusx_mx_e(const double x, gsl_sf_result * result);
0078 double gsl_sf_log_1plusx_mx(const double x);
0079
0080 __END_DECLS
0081
0082 #endif