Visual Stdio C++ 编译器 编译 (GSL) GNU Scientific Library 的方法介绍(8)

编译好的版本放到了这里,包括静态库和动态库。大家直接用吧。
http://download.csdn.net/detail/liyuanbhu/9618257

Visual Stdio C++ 编译器 编译 (GSL) GNU Scientific Library 的方法介绍(8)

gsl_ieee 模块

这个模块缺少对 MSVC 平台的支持。我们需要自己写一个 fp_msvc.c 文件:

/* ieee-utils/fp-msvc.c
 * 
 * Copyright (C) 2015 LiYuan
 * 
 * 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#include <stdio.h>
#include <float.h>
#include <gsl/gsl_errno.h>
#include <gsl/gsl_ieee_utils.h>
int
gsl_ieee_set_mode (int precision, int rounding, int exception_mask)
{
    unsigned int prec, round, mask = 0;
    switch (precision)
    {
    case GSL_IEEE_SINGLE_PRECISION:
        prec = _PC_24;
        break ;
    case GSL_IEEE_DOUBLE_PRECISION:
        prec = _PC_53;
        break ;
    case GSL_IEEE_EXTENDED_PRECISION:
        prec = _PC_64;
        break ;
    default:
        prec = _PC_64;

    }
    _controlfp(prec, _MCW_PC);

    switch (rounding)
    {
    case GSL_IEEE_ROUND_TO_NEAREST:
        round = _RC_NEAR;
        break ;
    case GSL_IEEE_ROUND_DOWN:
        round = _RC_DOWN;
        break ;
    case GSL_IEEE_ROUND_UP:
        round = _RC_UP;
        _controlfp(_RC_UP, _MCW_RC);
        break ;
    case GSL_IEEE_ROUND_TO_ZERO:
        round = _RC_CHOP;
        break ;
    default:
    round = _RC_NEAR; 
    }
    _controlfp(round, _MCW_RC);

    if (exception_mask & GSL_IEEE_MASK_INVALID)
        mask |= _EM_INVALID;

    if (exception_mask & GSL_IEEE_MASK_DENORMALIZED)
        mask |= _EM_DENORMAL;

    if (exception_mask & GSL_IEEE_MASK_DIVISION_BY_ZERO)
        mask |= _EM_ZERODIVIDE;

    if (exception_mask & GSL_IEEE_MASK_OVERFLOW)
        mask |= _EM_OVERFLOW;

    if (exception_mask & GSL_IEEE_MASK_UNDERFLOW)
        mask |= _EM_UNDERFLOW;

    if (exception_mask & GSL_IEEE_TRAP_INEXACT)
        mask |= _EM_INEXACT;

    _controlfp( mask, _MCW_EM );

#if HAVE_FPU_X86_SSE
#define _FPU_SETMXCSR(cw_sse) asm volatile ("ldmxcsr %0" : : "m" (*&cw_sse))
    {

        unsigned int control_word_sse;
        control_word_x87 = __control87_2(mask, _MCW_EM, 0, &control_word_sse);
        control_word_x87 = __control87_2(round, _MCW_RC, 0, &control_word_sse);
    }
#endif

    return GSL_SUCCESS ;
}

然后 env.c 文件也要修改:

#if defined( _MSC_VER )

    extern const char *fp_env_string;
    p = fp_env_string;

#else

这几行需要全部注释掉。

项目文件:

#-------------------------------------------------
#
# Project created by QtCreator 2016-08-26T20:38:46
#
#-------------------------------------------------

QT       -= core gui

TARGET = gsl_ieee
TEMPLATE = lib
CONFIG += staticlib

INCLUDEPATH += ./include/

SOURCES += \
    source/ieee-utils/env.c \
    source/ieee-utils/fp_msvc.c \
    source/ieee-utils/make_rep.c \
    source/ieee-utils/print.c \
    source/ieee-utils/read.c

unix {
    target.path = /usr/lib
    INSTALLS += target
}

DISTFILES +=

生成 gsl-2.1.lib

这时我们已经有了如下的文件:

gsl_blas.lib
gsl_matrix.lib
gsl_rstat.lib
gsl_block.lib
gsl_min.lib
gsl_siman.lib
gsl_bspline.lib
gsl_multifit.lib
gsl_sort.lib
gsl_cdf.lib
gsl_multilarge.lib
gsl_spblas.lib
gsl_cheb.lib
gsl_multimin.lib
gsl_specfunc.lib
gsl_combination.lib
gsl_multiroots.lib
gsl_splinalg.lib
gsl_complex.lib
gsl_monte.lib
gsl_multiset.lib
gsl_spmatrix.lib
gsl_deriv.lib
gsl_ntuple.lib
gsl_statistics.lib
gsl_dht.lib
gsl_odeiv.lib
gsl_sum.lib
gsl_eigen.lib
gsl_odeiv2.lib
gsl_sys.lib
gsl_err.lib
gsl_permutation.lib
gsl_vector.lib
gsl_fft.lib
gsl_poly.lib
gsl_wavelet.lib
gsl_fit.lib
gsl_qrng.lib
gsl_integration.lib
gsl_randist.lib
gsl_interp.lib
gsl_rng.lib
gsl_linalg.lib
gsl_roots.lib
gsl_histogram.lib
gsl_utils.lib
gsl_diff.lib
gsl_ieee.lib
gsl_test.lib
gsl_version.lib

下面就该把这些文件合成一个 gsl-2.1.lib 了。

首先把这些文件拷贝到一个目录中。然后执行如下命令:
lib.exe /out:gsl-2.1.lib gsl_*.lib

就这么简答。之后我们就有了 gsl-2.1.lib 了。

生成 gsl-2.1.dll

和生成 gslcblas.dll 类似。首先我们也要有个 def 文件。这里我提供一个。

LIBRARY gsl-2.1
EXPORTS 
GSL_MAX_DBL
GSL_MAX_INT
GSL_MAX_LDBL
GSL_MIN_DBL
GSL_MIN_INT
GSL_MIN_LDBL
GSL_MODE_PREC
_gsl_sf_bessel_amp_phase_bm0_cs
_gsl_sf_bessel_amp_phase_bm1_cs
_gsl_sf_bessel_amp_phase_bth0_cs
_gsl_sf_bessel_amp_phase_bth1_cs
_lock_file
_unlock_file
gsl_acosh
gsl_asinh
gsl_atanh
gsl_blas_caxpy
gsl_blas_ccopy
gsl_blas_cdotc
gsl_blas_cdotu
gsl_blas_cgemm
gsl_blas_cgemv
gsl_blas_cgerc
gsl_blas_cgeru
gsl_blas_chemm
gsl_blas_chemv
gsl_blas_cher
gsl_blas_cher2
gsl_blas_cher2k
gsl_blas_cherk
gsl_blas_cscal
gsl_blas_csscal
gsl_blas_cswap
gsl_blas_csymm
gsl_blas_csyr2k
gsl_blas_csyrk
gsl_blas_ctrmm
gsl_blas_ctrmv
gsl_blas_ctrsm
gsl_blas_ctrsv
gsl_blas_dasum
gsl_blas_daxpy
gsl_blas_dcopy
gsl_blas_ddot
gsl_blas_dgemm
gsl_blas_dgemv
gsl_blas_dger
gsl_blas_dnrm2
gsl_blas_drot
gsl_blas_drotg
gsl_blas_drotm
gsl_blas_drotmg
gsl_blas_dscal
gsl_blas_dsdot
gsl_blas_dswap
gsl_blas_dsymm
gsl_blas_dsymv
gsl_blas_dsyr
gsl_blas_dsyr2
gsl_blas_dsyr2k
gsl_blas_dsyrk
gsl_blas_dtrmm
gsl_blas_dtrmv
gsl_blas_dtrsm
gsl_blas_dtrsv
gsl_blas_dzasum
gsl_blas_dznrm2
gsl_blas_icamax
gsl_blas_idamax
gsl_blas_isamax
gsl_blas_izamax
gsl_blas_sasum
gsl_blas_saxpy
gsl_blas_scasum
gsl_blas_scnrm2
gsl_blas_scopy
gsl_blas_sdot
gsl_blas_sdsdot
gsl_blas_sgemm
gsl_blas_sgemv
gsl_blas_sger
gsl_blas_snrm2
gsl_blas_srot
gsl_blas_srotg
gsl_blas_srotm
gsl_blas_srotmg
gsl_blas_sscal
gsl_blas_sswap
gsl_blas_ssymm
gsl_blas_ssymv
gsl_blas_ssyr
gsl_blas_ssyr2
gsl_blas_ssyr2k
gsl_blas_ssyrk
gsl_blas_strmm
gsl_blas_strmv
gsl_blas_strsm
gsl_blas_strsv
gsl_blas_zaxpy
gsl_blas_zcopy
gsl_blas_zdotc
gsl_blas_zdotu
gsl_blas_zdscal
gsl_blas_zgemm
gsl_blas_zgemv
gsl_blas_zgerc
gsl_blas_zgeru
gsl_blas_zhemm
gsl_blas_zhemv
gsl_blas_zher
gsl_blas_zher2
gsl_blas_zher2k
gsl_blas_zherk
gsl_blas_zscal
gsl_blas_zswap
gsl_blas_zsymm
gsl_blas_zsyr2k
gsl_blas_zsyrk
gsl_blas_ztrmm
gsl_blas_ztrmv
gsl_blas_ztrsm
gsl_blas_ztrsv
gsl_block_alloc
gsl_block_calloc
gsl_block_char_alloc
gsl_block_char_calloc
gsl_block_char_data
gsl_block_char_fprintf
gsl_block_char_fread
gsl_block_char_free
gsl_block_char_fscanf
gsl_block_char_fwrite
gsl_block_char_raw_fprintf
gsl_block_char_raw_fread
gsl_block_char_raw_fscanf
gsl_block_char_raw_fwrite
gsl_block_char_size
gsl_block_complex_alloc
gsl_block_complex_calloc
gsl_block_complex_data
gsl_block_complex_float_alloc
gsl_block_complex_float_calloc
gsl_block_complex_float_data
gsl_block_complex_float_fprintf
gsl_block_complex_float_fread
gsl_block_complex_float_free
gsl_block_complex_float_fscanf
gsl_block_complex_float_fwrite
gsl_block_complex_float_raw_fprintf
gsl_block_complex_float_raw_fread
gsl_block_complex_float_raw_fscanf
gsl_block_complex_float_raw_fwrite
gsl_block_complex_float_size
gsl_block_complex_fprintf
gsl_block_complex_fread
gsl_block_complex_free
gsl_block_complex_fscanf
gsl_block_complex_fwrite
gsl_block_complex_long_double_alloc
gsl_block_complex_long_double_calloc
gsl_block_complex_long_double_data
gsl_block_complex_long_double_fprintf
gsl_block_complex_long_double_fread
gsl_block_complex_long_double_free
gsl_block_complex_long_double_fscanf
gsl_block_complex_long_double_fwrite
gsl_block_complex_long_double_raw_fprintf
gsl_block_complex_long_double_raw_fread
gsl_block_complex_long_double_raw_fscanf
gsl_block_complex_long_double_raw_fwrite
gsl_block_complex_long_double_size
gsl_block_complex_raw_fprintf
gsl_block_complex_raw_fread
gsl_block_complex_raw_fscanf
gsl_block_complex_raw_fwrite
gsl_block_complex_size
gsl_block_data
gsl_block_float_alloc
gsl_block_float_calloc
gsl_block_float_data
gsl_block_float_fprintf
gsl_block_float_fread
gsl_block_float_free
gsl_block_float_fscanf
gsl_block_float_fwrite
gsl_block_float_raw_fprintf
gsl_block_float_raw_fread
gsl_block_float_raw_fscanf
gsl_block_float_raw_fwrite
gsl_block_float_size
gsl_block_fprintf
gsl_block_fread
gsl_block_free
gsl_block_fscanf
gsl_block_fwrite
gsl_block_int_alloc
gsl_block_int_calloc
gsl_block_int_data
gsl_block_int_fprintf
gsl_block_int_fread
gsl_block_int_free
gsl_block_int_fscanf
gsl_block_int_fwrite
gsl_block_int_raw_fprintf
gsl_block_int_raw_fread
gsl_block_int_raw_fscanf
gsl_block_int_raw_fwrite
gsl_block_int_size
gsl_block_long_alloc
gsl_block_long_calloc
gsl_block_long_data
gsl_block_long_double_alloc
gsl_block_long_double_calloc
gsl_block_long_double_data
gsl_block_long_double_fprintf
gsl_block_long_double_fread
gsl_block_long_double_free
gsl_block_long_double_fscanf
gsl_block_long_double_fwrite
gsl_block_long_double_raw_fprintf
gsl_block_long_double_raw_fread
gsl_block_long_double_raw_fscanf
gsl_block_long_double_raw_fwrite
gsl_block_long_double_size
gsl_block_long_fprintf
gsl_block_long_fread
gsl_block_long_free
gsl_block_long_fscanf
gsl_block_long_fwrite
gsl_block_long_raw_fprintf
gsl_block_long_raw_fread
gsl_block_long_raw_fscanf
gsl_block_long_raw_fwrite
gsl_block_long_size
gsl_block_raw_fprintf
gsl_block_raw_fread
gsl_block_raw_fscanf
gsl_block_raw_fwrite
gsl_block_short_alloc
gsl_block_short_calloc
gsl_block_short_data
gsl_block_short_fprintf
gsl_block_short_fread
gsl_block_short_free
gsl_block_short_fscanf
gsl_block_short_fwrite
gsl_block_short_raw_fprintf
gsl_block_short_raw_fread
gsl_block_short_raw_fscanf
gsl_block_short_raw_fwrite
gsl_block_short_size
gsl_block_size
gsl_block_uchar_alloc
gsl_block_uchar_calloc
gsl_block_uchar_data
gsl_block_uchar_fprintf
gsl_block_uchar_fread
gsl_block_uchar_free
gsl_block_uchar_fscanf
gsl_block_uchar_fwrite
gsl_block_uchar_raw_fprintf
gsl_block_uchar_raw_fread
gsl_block_uchar_raw_fscanf
gsl_block_uchar_raw_fwrite
gsl_block_uchar_size
gsl_block_uint_alloc
gsl_block_uint_calloc
gsl_block_uint_data
gsl_block_uint_fprintf
gsl_block_uint_fread
gsl_block_uint_free
gsl_block_uint_fscanf
gsl_block_uint_fwrite
gsl_block_uint_raw_fprintf
gsl_block_uint_raw_fread
gsl_block_uint_raw_fscanf
gsl_block_uint_raw_fwrite
gsl_block_uint_size
gsl_block_ulong_alloc
gsl_block_ulong_calloc
gsl_block_ulong_data
gsl_block_ulong_fprintf
gsl_block_ulong_fread
gsl_block_ulong_free
gsl_block_ulong_fscanf
gsl_block_ulong_fwrite
gsl_block_ulong_raw_fprintf
gsl_block_ulong_raw_fread
gsl_block_ulong_raw_fscanf
gsl_block_ulong_raw_fwrite
gsl_block_ulong_size
gsl_block_ushort_alloc
gsl_block_ushort_calloc
gsl_block_ushort_data
gsl_block_ushort_fprintf
gsl_block_ushort_fread
gsl_block_ushort_free
gsl_block_ushort_fscanf
gsl_block_ushort_fwrite
gsl_block_ushort_raw_fprintf
gsl_block_ushort_raw_fread
gsl_block_ushort_raw_fscanf
gsl_block_ushort_raw_fwrite
gsl_block_ushort_size
gsl_bspline_alloc
gsl_bspline_breakpoint
gsl_bspline_deriv_eval
gsl_bspline_deriv_eval_nonzero
gsl_bspline_eval
gsl_bspline_eval_nonzero
gsl_bspline_free
gsl_bspline_greville_abscissa
gsl_bspline_knots
gsl_bspline_knots_greville
gsl_bspline_knots_uniform
gsl_bspline_nbreak
gsl_bspline_ncoeffs
gsl_bspline_order
gsl_cdf_beta_P
gsl_cdf_beta_Pinv
gsl_cdf_beta_Q
gsl_cdf_beta_Qinv
gsl_cdf_binomial_P
gsl_cdf_binomial_Q
gsl_cdf_cauchy_P
gsl_cdf_cauchy_Pinv
gsl_cdf_cauchy_Q
gsl_cdf_cauchy_Qinv
gsl_cdf_chisq_P
gsl_cdf_chisq_Pinv
gsl_cdf_chisq_Q
gsl_cdf_chisq_Qinv
gsl_cdf_exponential_P
gsl_cdf_exponential_Pinv
gsl_cdf_exponential_Q
gsl_cdf_exponential_Qinv
gsl_cdf_exppow_P
gsl_cdf_exppow_Q
gsl_cdf_fdist_P
gsl_cdf_fdist_Pinv
gsl_cdf_fdist_Q
gsl_cdf_fdist_Qinv
gsl_cdf_flat_P
gsl_cdf_flat_Pinv
gsl_cdf_flat_Q
gsl_cdf_flat_Qinv
gsl_cdf_gamma_P
gsl_cdf_gamma_Pinv
gsl_cdf_gamma_Q
gsl_cdf_gamma_Qinv
gsl_cdf_gaussian_P
gsl_cdf_gaussian_Pinv
gsl_cdf_gaussian_Q
gsl_cdf_gaussian_Qinv
gsl_cdf_geometric_P
gsl_cdf_geometric_Q
gsl_cdf_gumbel1_P
gsl_cdf_gumbel1_Pinv
gsl_cdf_gumbel1_Q
gsl_cdf_gumbel1_Qinv
gsl_cdf_gumbel2_P
gsl_cdf_gumbel2_Pinv
gsl_cdf_gumbel2_Q
gsl_cdf_gumbel2_Qinv
gsl_cdf_hypergeometric_P
gsl_cdf_hypergeometric_Q
gsl_cdf_laplace_P
gsl_cdf_laplace_Pinv
gsl_cdf_laplace_Q
gsl_cdf_laplace_Qinv
gsl_cdf_logistic_P
gsl_cdf_logistic_Pinv
gsl_cdf_logistic_Q
gsl_cdf_logistic_Qinv
gsl_cdf_lognormal_P
gsl_cdf_lognormal_Pinv
gsl_cdf_lognormal_Q
gsl_cdf_lognormal_Qinv
gsl_cdf_negative_binomial_P
gsl_cdf_negative_binomial_Q
gsl_cdf_pareto_P
gsl_cdf_pareto_Pinv
gsl_cdf_pareto_Q
gsl_cdf_pareto_Qinv
gsl_cdf_pascal_P
gsl_cdf_pascal_Q
gsl_cdf_poisson_P
gsl_cdf_poisson_Q
gsl_cdf_rayleigh_P
gsl_cdf_rayleigh_Pinv
gsl_cdf_rayleigh_Q
gsl_cdf_rayleigh_Qinv
gsl_cdf_tdist_P
gsl_cdf_tdist_Pinv
gsl_cdf_tdist_Q
gsl_cdf_tdist_Qinv
gsl_cdf_ugaussian_P
gsl_cdf_ugaussian_Pinv
gsl_cdf_ugaussian_Q
gsl_cdf_ugaussian_Qinv
gsl_cdf_weibull_P
gsl_cdf_weibull_Pinv
gsl_cdf_weibull_Q
gsl_cdf_weibull_Qinv
gsl_cheb_alloc
gsl_cheb_calc_deriv
gsl_cheb_calc_integ
gsl_cheb_coeffs
gsl_cheb_eval
gsl_cheb_eval_err
gsl_cheb_eval_mode
gsl_cheb_eval_mode_e
gsl_cheb_eval_n
gsl_cheb_eval_n_err
gsl_cheb_free
gsl_cheb_init
gsl_cheb_order
gsl_cheb_size
gsl_check_range
gsl_coerce_double
gsl_coerce_float
gsl_coerce_long_double
gsl_combination_alloc
gsl_combination_calloc
gsl_combination_data
gsl_combination_fprintf
gsl_combination_fread
gsl_combination_free
gsl_combination_fscanf
gsl_combination_fwrite
gsl_combination_get
gsl_combination_init_first
gsl_combination_init_last
gsl_combination_k
gsl_combination_memcpy
gsl_combination_n
gsl_combination_next
gsl_combination_prev
gsl_combination_valid
gsl_complex_abs
gsl_complex_abs2
gsl_complex_add
gsl_complex_add_imag
gsl_complex_add_real
gsl_complex_arccos
gsl_complex_arccos_real
gsl_complex_arccosh
gsl_complex_arccosh_real
gsl_complex_arccot
gsl_complex_arccoth
gsl_complex_arccsc
gsl_complex_arccsc_real
gsl_complex_arccsch
gsl_complex_arcsec
gsl_complex_arcsec_real
gsl_complex_arcsech
gsl_complex_arcsin
gsl_complex_arcsin_real
gsl_complex_arcsinh
gsl_complex_arctan
gsl_complex_arctanh
gsl_complex_arctanh_real
gsl_complex_arg
gsl_complex_conjugate
gsl_complex_cos
gsl_complex_cosh
gsl_complex_cot
gsl_complex_coth
gsl_complex_csc
gsl_complex_csch
gsl_complex_div
gsl_complex_div_imag
gsl_complex_div_real
gsl_complex_exp
gsl_complex_inverse
gsl_complex_log
gsl_complex_log10
gsl_complex_log_b
gsl_complex_logabs
gsl_complex_mul
gsl_complex_mul_imag
gsl_complex_mul_real
gsl_complex_negative
gsl_complex_polar
gsl_complex_poly_complex_eval
gsl_complex_pow
gsl_complex_pow_real
gsl_complex_rect
gsl_complex_sec
gsl_complex_sech
gsl_complex_sin
gsl_complex_sinh
gsl_complex_sqrt
gsl_complex_sqrt_real
gsl_complex_sub
gsl_complex_sub_imag
gsl_complex_sub_real
gsl_complex_tan
gsl_complex_tanh
gsl_deriv_backward
gsl_deriv_central
gsl_deriv_forward
gsl_dft_complex_backward
gsl_dft_complex_float_backward
gsl_dft_complex_float_forward
gsl_dft_complex_float_inverse
gsl_dft_complex_float_transform
gsl_dft_complex_forward
gsl_dft_complex_inverse
gsl_dft_complex_transform
gsl_dht_alloc
gsl_dht_apply
gsl_dht_free
gsl_dht_init
gsl_dht_k_sample
gsl_dht_new
gsl_dht_x_sample
gsl_diff_backward
gsl_diff_central
gsl_diff_forward
gsl_eigen_francis
gsl_eigen_francis_T
gsl_eigen_francis_Z
gsl_eigen_francis_alloc
gsl_eigen_francis_free
gsl_eigen_gen
gsl_eigen_gen_QZ
gsl_eigen_gen_alloc
gsl_eigen_gen_free
gsl_eigen_gen_params
gsl_eigen_genherm
gsl_eigen_genherm_alloc
gsl_eigen_genherm_free
gsl_eigen_genherm_standardize
gsl_eigen_genhermv
gsl_eigen_genhermv_alloc
gsl_eigen_genhermv_free
gsl_eigen_genhermv_sort
gsl_eigen_gensymm
gsl_eigen_gensymm_alloc
gsl_eigen_gensymm_free
gsl_eigen_gensymm_standardize
gsl_eigen_gensymmv
gsl_eigen_gensymmv_alloc
gsl_eigen_gensymmv_free
gsl_eigen_gensymmv_sort
gsl_eigen_genv
gsl_eigen_genv_QZ
gsl_eigen_genv_alloc
gsl_eigen_genv_free
gsl_eigen_genv_sort
gsl_eigen_herm
gsl_eigen_herm_alloc
gsl_eigen_herm_free
gsl_eigen_hermv
gsl_eigen_hermv_alloc
gsl_eigen_hermv_free
gsl_eigen_hermv_sort
gsl_eigen_invert_jacobi
gsl_eigen_jacobi
gsl_eigen_nonsymm
gsl_eigen_nonsymm_Z
gsl_eigen_nonsymm_alloc
gsl_eigen_nonsymm_free
gsl_eigen_nonsymm_params
gsl_eigen_nonsymmv
gsl_eigen_nonsymmv_Z
gsl_eigen_nonsymmv_alloc
gsl_eigen_nonsymmv_free
gsl_eigen_nonsymmv_params
gsl_eigen_nonsymmv_sort
gsl_eigen_symm
gsl_eigen_symm_alloc
gsl_eigen_symm_free
gsl_eigen_symmv
gsl_eigen_symmv_alloc
gsl_eigen_symmv_free
gsl_eigen_symmv_sort
gsl_error
gsl_error_handler
gsl_expm1
gsl_fcmp
gsl_fdiv
gsl_fft_complex_backward
gsl_fft_complex_float_backward
gsl_fft_complex_float_forward
gsl_fft_complex_float_inverse
gsl_fft_complex_float_memcpy
gsl_fft_complex_float_radix2_backward
gsl_fft_complex_float_radix2_dif_backward
gsl_fft_complex_float_radix2_dif_forward
gsl_fft_complex_float_radix2_dif_inverse
gsl_fft_complex_float_radix2_dif_transform
gsl_fft_complex_float_radix2_forward
gsl_fft_complex_float_radix2_inverse
gsl_fft_complex_float_radix2_transform
gsl_fft_complex_float_transform
gsl_fft_complex_forward
gsl_fft_complex_inverse
gsl_fft_complex_memcpy
gsl_fft_complex_radix2_backward
gsl_fft_complex_radix2_dif_backward
gsl_fft_complex_radix2_dif_forward
gsl_fft_complex_radix2_dif_inverse
gsl_fft_complex_radix2_dif_transform
gsl_fft_complex_radix2_forward
gsl_fft_complex_radix2_inverse
gsl_fft_complex_radix2_transform
gsl_fft_complex_transform
gsl_fft_complex_wavetable_alloc
gsl_fft_complex_wavetable_float_alloc
gsl_fft_complex_wavetable_float_free
gsl_fft_complex_wavetable_free
gsl_fft_complex_workspace_alloc
gsl_fft_complex_workspace_float_alloc
gsl_fft_complex_workspace_float_free
gsl_fft_complex_workspace_free
gsl_fft_halfcomplex_backward
gsl_fft_halfcomplex_float_backward
gsl_fft_halfcomplex_float_inverse
gsl_fft_halfcomplex_float_radix2_backward
gsl_fft_halfcomplex_float_radix2_inverse
gsl_fft_halfcomplex_float_radix2_transform
gsl_fft_halfcomplex_float_radix2_unpack
gsl_fft_halfcomplex_float_transform
gsl_fft_halfcomplex_float_unpack
gsl_fft_halfcomplex_inverse
gsl_fft_halfcomplex_radix2_backward
gsl_fft_halfcomplex_radix2_inverse
gsl_fft_halfcomplex_radix2_transform
gsl_fft_halfcomplex_radix2_unpack
gsl_fft_halfcomplex_transform
gsl_fft_halfcomplex_unpack
gsl_fft_halfcomplex_wavetable_alloc
gsl_fft_halfcomplex_wavetable_float_alloc
gsl_fft_halfcomplex_wavetable_float_free
gsl_fft_halfcomplex_wavetable_free
gsl_fft_real_float_radix2_transform
gsl_fft_real_float_transform
gsl_fft_real_float_unpack
gsl_fft_real_radix2_transform
gsl_fft_real_transform
gsl_fft_real_unpack
gsl_fft_real_wavetable_alloc
gsl_fft_real_wavetable_float_alloc
gsl_fft_real_wavetable_float_free
gsl_fft_real_wavetable_free
gsl_fft_real_workspace_alloc
gsl_fft_real_workspace_float_alloc
gsl_fft_real_workspace_float_free
gsl_fft_real_workspace_free
gsl_finite
gsl_fit_linear
gsl_fit_linear_est
gsl_fit_mul
gsl_fit_mul_est
gsl_fit_wlinear
gsl_fit_wmul
gsl_frexp
gsl_heapsort
gsl_heapsort_index
gsl_histogram2d_accumulate
gsl_histogram2d_add
gsl_histogram2d_alloc
gsl_histogram2d_calloc
gsl_histogram2d_calloc_range
gsl_histogram2d_calloc_uniform
gsl_histogram2d_clone
gsl_histogram2d_cov
gsl_histogram2d_div
gsl_histogram2d_equal_bins_p
gsl_histogram2d_find
gsl_histogram2d_fprintf
gsl_histogram2d_fread
gsl_histogram2d_free
gsl_histogram2d_fscanf
gsl_histogram2d_fwrite
gsl_histogram2d_get
gsl_histogram2d_get_xrange
gsl_histogram2d_get_yrange
gsl_histogram2d_increment
gsl_histogram2d_max_bin
gsl_histogram2d_max_val
gsl_histogram2d_memcpy
gsl_histogram2d_min_bin
gsl_histogram2d_min_val
gsl_histogram2d_mul
gsl_histogram2d_nx
gsl_histogram2d_ny
gsl_histogram2d_pdf_alloc
gsl_histogram2d_pdf_free
gsl_histogram2d_pdf_init
gsl_histogram2d_pdf_sample
gsl_histogram2d_reset
gsl_histogram2d_scale
gsl_histogram2d_set_ranges
gsl_histogram2d_set_ranges_uniform
gsl_histogram2d_shift
gsl_histogram2d_sub
gsl_histogram2d_sum
gsl_histogram2d_xmax
gsl_histogram2d_xmean
gsl_histogram2d_xmin
gsl_histogram2d_xsigma
gsl_histogram2d_ymax
gsl_histogram2d_ymean
gsl_histogram2d_ymin
gsl_histogram2d_ysigma
gsl_histogram_accumulate
gsl_histogram_add
gsl_histogram_alloc
gsl_histogram_bins
gsl_histogram_calloc
gsl_histogram_calloc_range
gsl_histogram_calloc_uniform
gsl_histogram_clone
gsl_histogram_div
gsl_histogram_equal_bins_p
gsl_histogram_find
gsl_histogram_fprintf
gsl_histogram_fread
gsl_histogram_free
gsl_histogram_fscanf
gsl_histogram_fwrite
gsl_histogram_get
gsl_histogram_get_range
gsl_histogram_increment
gsl_histogram_max
gsl_histogram_max_bin
gsl_histogram_max_val
gsl_histogram_mean
gsl_histogram_memcpy
gsl_histogram_min
gsl_histogram_min_bin
gsl_histogram_min_val
gsl_histogram_mul
gsl_histogram_pdf_alloc
gsl_histogram_pdf_free
gsl_histogram_pdf_init
gsl_histogram_pdf_sample
gsl_histogram_reset
gsl_histogram_scale
gsl_histogram_set_ranges
gsl_histogram_set_ranges_uniform
gsl_histogram_shift
gsl_histogram_sigma
gsl_histogram_sub
gsl_histogram_sum
gsl_hypot
gsl_hypot3
gsl_ieee_double_to_rep
gsl_ieee_env_setup
gsl_ieee_float_to_rep
gsl_ieee_fprintf_double
gsl_ieee_fprintf_float
gsl_ieee_printf_double
gsl_ieee_printf_float
gsl_ieee_read_mode_string
gsl_ieee_set_mode
gsl_integration_cquad
gsl_integration_cquad_workspace_alloc
gsl_integration_cquad_workspace_free
gsl_integration_glfixed
gsl_integration_glfixed_point
gsl_integration_glfixed_table_alloc
gsl_integration_glfixed_table_free
gsl_integration_qag
gsl_integration_qagi
gsl_integration_qagil
gsl_integration_qagiu
gsl_integration_qagp
gsl_integration_qags
gsl_integration_qawc
gsl_integration_qawf
gsl_integration_qawo
gsl_integration_qawo_table_alloc
gsl_integration_qawo_table_free
gsl_integration_qawo_table_set
gsl_integration_qawo_table_set_length
gsl_integration_qaws
gsl_integration_qaws_table_alloc
gsl_integration_qaws_table_free
gsl_integration_qaws_table_set
gsl_integration_qcheb
gsl_integration_qk
gsl_integration_qk15
gsl_integration_qk21
gsl_integration_qk31
gsl_integration_qk41
gsl_integration_qk51
gsl_integration_qk61
gsl_integration_qng
gsl_integration_workspace_alloc
gsl_integration_workspace_free
gsl_interp2d_alloc
gsl_interp2d_bicubic
gsl_interp2d_bilinear
gsl_interp2d_eval
gsl_interp2d_eval_deriv_x
gsl_interp2d_eval_deriv_x_e
gsl_interp2d_eval_deriv_xx
gsl_interp2d_eval_deriv_xx_e
gsl_interp2d_eval_deriv_xy
gsl_interp2d_eval_deriv_xy_e
gsl_interp2d_eval_deriv_y
gsl_interp2d_eval_deriv_y_e
gsl_interp2d_eval_deriv_yy
gsl_interp2d_eval_deriv_yy_e
gsl_interp2d_eval_e
gsl_interp2d_eval_e_extrap
gsl_interp2d_eval_extrap
gsl_interp2d_free
gsl_interp2d_get
gsl_interp2d_idx
gsl_interp2d_init
gsl_interp2d_min_size
gsl_interp2d_name
gsl_interp2d_set
gsl_interp2d_type_min_size
gsl_interp_accel_alloc
gsl_interp_accel_find
gsl_interp_accel_free
gsl_interp_accel_reset
gsl_interp_akima
gsl_interp_akima_periodic
gsl_interp_alloc
gsl_interp_bsearch
gsl_interp_cspline
gsl_interp_cspline_periodic
gsl_interp_eval
gsl_interp_eval_deriv
gsl_interp_eval_deriv2
gsl_interp_eval_deriv2_e
gsl_interp_eval_deriv_e
gsl_interp_eval_e
gsl_interp_eval_integ
gsl_interp_eval_integ_e
gsl_interp_free
gsl_interp_init
gsl_interp_linear
gsl_interp_min_size
gsl_interp_name
gsl_interp_polynomial
gsl_interp_steffen
gsl_interp_type_min_size
gsl_isinf
gsl_isnan
gsl_ldexp
gsl_linalg_HH_solve
gsl_linalg_HH_svx
gsl_linalg_LQ_LQsolve
gsl_linalg_LQ_Lsolve_T
gsl_linalg_LQ_Lsvx_T
gsl_linalg_LQ_decomp
gsl_linalg_LQ_lssolve_T
gsl_linalg_LQ_solve_T
gsl_linalg_LQ_svx_T
gsl_linalg_LQ_unpack
gsl_linalg_LQ_update
gsl_linalg_LQ_vecQ
gsl_linalg_LQ_vecQT
gsl_linalg_LU_decomp
gsl_linalg_LU_det
gsl_linalg_LU_invert
gsl_linalg_LU_lndet
gsl_linalg_LU_refine
gsl_linalg_LU_sgndet
gsl_linalg_LU_solve
gsl_linalg_LU_svx
gsl_linalg_L_solve_T
gsl_linalg_PTLQ_LQsolve_T
gsl_linalg_PTLQ_Lsolve_T
gsl_linalg_PTLQ_Lsvx_T
gsl_linalg_PTLQ_decomp
gsl_linalg_PTLQ_decomp2
gsl_linalg_PTLQ_solve_T
gsl_linalg_PTLQ_svx_T
gsl_linalg_PTLQ_update
gsl_linalg_QRPT_QRsolve
gsl_linalg_QRPT_Rsolve
gsl_linalg_QRPT_Rsvx
gsl_linalg_QRPT_decomp
gsl_linalg_QRPT_decomp2
gsl_linalg_QRPT_solve
gsl_linalg_QRPT_svx
gsl_linalg_QRPT_update
gsl_linalg_QR_QRsolve
gsl_linalg_QR_QTmat
gsl_linalg_QR_QTvec
gsl_linalg_QR_Qvec
gsl_linalg_QR_Rsolve
gsl_linalg_QR_Rsvx
gsl_linalg_QR_decomp
gsl_linalg_QR_lssolve
gsl_linalg_QR_matQ
gsl_linalg_QR_solve
gsl_linalg_QR_svx
gsl_linalg_QR_unpack
gsl_linalg_QR_update
gsl_linalg_R_solve
gsl_linalg_R_svx
gsl_linalg_SV_decomp
gsl_linalg_SV_decomp_jacobi
gsl_linalg_SV_decomp_mod
gsl_linalg_SV_leverage
gsl_linalg_SV_solve
gsl_linalg_balance_accum
gsl_linalg_balance_columns
gsl_linalg_balance_matrix
gsl_linalg_bidiag_decomp
gsl_linalg_bidiag_unpack
gsl_linalg_bidiag_unpack2
gsl_linalg_bidiag_unpack_B
gsl_linalg_cholesky_decomp
gsl_linalg_cholesky_decomp_unit
gsl_linalg_cholesky_invert
gsl_linalg_cholesky_solve
gsl_linalg_cholesky_svx
gsl_linalg_complex_LU_decomp
gsl_linalg_complex_LU_det
gsl_linalg_complex_LU_invert
gsl_linalg_complex_LU_lndet
gsl_linalg_complex_LU_refine
gsl_linalg_complex_LU_sgndet
gsl_linalg_complex_LU_solve
gsl_linalg_complex_LU_svx
gsl_linalg_complex_cholesky_decomp
gsl_linalg_complex_cholesky_invert
gsl_linalg_complex_cholesky_solve
gsl_linalg_complex_cholesky_svx
gsl_linalg_complex_householder_hm
gsl_linalg_complex_householder_hv
gsl_linalg_complex_householder_mh
gsl_linalg_complex_householder_transform
gsl_linalg_exponential_ss
gsl_linalg_givens
gsl_linalg_givens_gv
gsl_linalg_hermtd_decomp
gsl_linalg_hermtd_unpack
gsl_linalg_hermtd_unpack_T
gsl_linalg_hessenberg
gsl_linalg_hessenberg_decomp
gsl_linalg_hessenberg_set_zero
gsl_linalg_hessenberg_submatrix
gsl_linalg_hessenberg_unpack
gsl_linalg_hessenberg_unpack_accum
gsl_linalg_hesstri_decomp
gsl_linalg_householder_hm
gsl_linalg_householder_hm1
gsl_linalg_householder_hv
gsl_linalg_householder_mh
gsl_linalg_householder_transform
gsl_linalg_matmult
gsl_linalg_matmult_mod
gsl_linalg_solve_cyc_tridiag
gsl_linalg_solve_symm_cyc_tridiag
gsl_linalg_solve_symm_tridiag
gsl_linalg_solve_tridiag
gsl_linalg_symmtd_decomp
gsl_linalg_symmtd_unpack
gsl_linalg_symmtd_unpack_T
gsl_log1p
gsl_matrix_add
gsl_matrix_add_constant
gsl_matrix_add_diagonal
gsl_matrix_alloc
gsl_matrix_alloc_from_block
gsl_matrix_alloc_from_matrix
gsl_matrix_calloc
gsl_matrix_char_add
gsl_matrix_char_add_constant
gsl_matrix_char_add_diagonal
gsl_matrix_char_alloc
gsl_matrix_char_alloc_from_block
gsl_matrix_char_alloc_from_matrix
gsl_matrix_char_calloc
gsl_matrix_char_column
gsl_matrix_char_const_column
gsl_matrix_char_const_diagonal
gsl_matrix_char_const_ptr
gsl_matrix_char_const_row
gsl_matrix_char_const_subcolumn
gsl_matrix_char_const_subdiagonal
gsl_matrix_char_const_submatrix
gsl_matrix_char_const_subrow
gsl_matrix_char_const_superdiagonal
gsl_matrix_char_const_view_array
gsl_matrix_char_const_view_array_with_tda
gsl_matrix_char_const_view_vector
gsl_matrix_char_const_view_vector_with_tda
gsl_matrix_char_diagonal
gsl_matrix_char_div_elements
gsl_matrix_char_equal
gsl_matrix_char_fprintf
gsl_matrix_char_fread
gsl_matrix_char_free
gsl_matrix_char_fscanf
gsl_matrix_char_fwrite
gsl_matrix_char_get
gsl_matrix_char_get_col
gsl_matrix_char_get_row
gsl_matrix_char_isneg
gsl_matrix_char_isnonneg
gsl_matrix_char_isnull
gsl_matrix_char_ispos
gsl_matrix_char_max
gsl_matrix_char_max_index
gsl_matrix_char_memcpy
gsl_matrix_char_min
gsl_matrix_char_min_index
gsl_matrix_char_minmax
gsl_matrix_char_minmax_index
gsl_matrix_char_mul_elements
gsl_matrix_char_ptr
gsl_matrix_char_row
gsl_matrix_char_scale
gsl_matrix_char_set
gsl_matrix_char_set_all
gsl_matrix_char_set_col
gsl_matrix_char_set_identity
gsl_matrix_char_set_row
gsl_matrix_char_set_zero
gsl_matrix_char_sub
gsl_matrix_char_subcolumn
gsl_matrix_char_subdiagonal
gsl_matrix_char_submatrix
gsl_matrix_char_subrow
gsl_matrix_char_superdiagonal
gsl_matrix_char_swap
gsl_matrix_char_swap_columns
gsl_matrix_char_swap_rowcol
gsl_matrix_char_swap_rows
gsl_matrix_char_transpose
gsl_matrix_char_transpose_memcpy
gsl_matrix_char_view_array
gsl_matrix_char_view_array_with_tda
gsl_matrix_char_view_vector
gsl_matrix_char_view_vector_with_tda
gsl_matrix_column
gsl_matrix_complex_add
gsl_matrix_complex_add_constant
gsl_matrix_complex_add_diagonal
gsl_matrix_complex_alloc
gsl_matrix_complex_alloc_from_block
gsl_matrix_complex_alloc_from_matrix
gsl_matrix_complex_calloc
gsl_matrix_complex_column
gsl_matrix_complex_const_column
gsl_matrix_complex_const_diagonal
gsl_matrix_complex_const_ptr
gsl_matrix_complex_const_row
gsl_matrix_complex_const_subcolumn
gsl_matrix_complex_const_subdiagonal
gsl_matrix_complex_const_submatrix
gsl_matrix_complex_const_subrow
gsl_matrix_complex_const_superdiagonal
gsl_matrix_complex_const_view_array
gsl_matrix_complex_const_view_array_with_tda
gsl_matrix_complex_const_view_vector
gsl_matrix_complex_const_view_vector_with_tda
gsl_matrix_complex_diagonal
gsl_matrix_complex_div_elements
gsl_matrix_complex_equal
gsl_matrix_complex_float_add
gsl_matrix_complex_float_add_constant
gsl_matrix_complex_float_add_diagonal
gsl_matrix_complex_float_alloc
gsl_matrix_complex_float_alloc_from_block
gsl_matrix_complex_float_alloc_from_matrix
gsl_matrix_complex_float_calloc
gsl_matrix_complex_float_column
gsl_matrix_complex_float_const_column
gsl_matrix_complex_float_const_diagonal
gsl_matrix_complex_float_const_ptr
gsl_matrix_complex_float_const_row
gsl_matrix_complex_float_const_subcolumn
gsl_matrix_complex_float_const_subdiagonal
gsl_matrix_complex_float_const_submatrix
gsl_matrix_complex_float_const_subrow
gsl_matrix_complex_float_const_superdiagonal
gsl_matrix_complex_float_const_view_array
gsl_matrix_complex_float_const_view_array_with_tda
gsl_matrix_complex_float_const_view_vector
gsl_matrix_complex_float_const_view_vector_with_tda
gsl_matrix_complex_float_diagonal
gsl_matrix_complex_float_div_elements
gsl_matrix_complex_float_equal
gsl_matrix_complex_float_fprintf
gsl_matrix_complex_float_fread
gsl_matrix_complex_float_free
gsl_matrix_complex_float_fscanf
gsl_matrix_complex_float_fwrite
gsl_matrix_complex_float_get
gsl_matrix_complex_float_get_col
gsl_matrix_complex_float_get_row
gsl_matrix_complex_float_isneg
gsl_matrix_complex_float_isnonneg
gsl_matrix_complex_float_isnull
gsl_matrix_complex_float_ispos
gsl_matrix_complex_float_memcpy
gsl_matrix_complex_float_mul_elements
gsl_matrix_complex_float_ptr
gsl_matrix_complex_float_row
gsl_matrix_complex_float_scale
gsl_matrix_complex_float_set
gsl_matrix_complex_float_set_all
gsl_matrix_complex_float_set_col
gsl_matrix_complex_float_set_identity
gsl_matrix_complex_float_set_row
gsl_matrix_complex_float_set_zero
gsl_matrix_complex_float_sub
gsl_matrix_complex_float_subcolumn
gsl_matrix_complex_float_subdiagonal
gsl_matrix_complex_float_submatrix
gsl_matrix_complex_float_subrow
gsl_matrix_complex_float_superdiagonal
gsl_matrix_complex_float_swap
gsl_matrix_complex_float_swap_columns
gsl_matrix_complex_float_swap_rowcol
gsl_matrix_complex_float_swap_rows
gsl_matrix_complex_float_transpose
gsl_matrix_complex_float_transpose_memcpy
gsl_matrix_complex_float_view_array
gsl_matrix_complex_float_view_array_with_tda
gsl_matrix_complex_float_view_vector
gsl_matrix_complex_float_view_vector_with_tda
gsl_matrix_complex_fprintf
gsl_matrix_complex_fread
gsl_matrix_complex_free
gsl_matrix_complex_fscanf
gsl_matrix_complex_fwrite
gsl_matrix_complex_get
gsl_matrix_complex_get_col
gsl_matrix_complex_get_row
gsl_matrix_complex_isneg
gsl_matrix_complex_isnonneg
gsl_matrix_complex_isnull
gsl_matrix_complex_ispos
gsl_matrix_complex_long_double_add
gsl_matrix_complex_long_double_add_constant
gsl_matrix_complex_long_double_add_diagonal
gsl_matrix_complex_long_double_alloc
gsl_matrix_complex_long_double_alloc_from_block
gsl_matrix_complex_long_double_alloc_from_matrix
gsl_matrix_complex_long_double_calloc
gsl_matrix_complex_long_double_column
gsl_matrix_complex_long_double_const_column
gsl_matrix_complex_long_double_const_diagonal
gsl_matrix_complex_long_double_const_ptr
gsl_matrix_complex_long_double_const_row
gsl_matrix_complex_long_double_const_subcolumn
gsl_matrix_complex_long_double_const_subdiagonal
gsl_matrix_complex_long_double_const_submatrix
gsl_matrix_complex_long_double_const_subrow
gsl_matrix_complex_long_double_const_superdiagonal
gsl_matrix_complex_long_double_const_view_array
gsl_matrix_complex_long_double_const_view_array_with_tda
gsl_matrix_complex_long_double_const_view_vector
gsl_matrix_complex_long_double_const_view_vector_with_tda
gsl_matrix_complex_long_double_diagonal
gsl_matrix_complex_long_double_div_elements
gsl_matrix_complex_long_double_equal
gsl_matrix_complex_long_double_fprintf
gsl_matrix_complex_long_double_fread
gsl_matrix_complex_long_double_free
gsl_matrix_complex_long_double_fscanf
gsl_matrix_complex_long_double_fwrite
gsl_matrix_complex_long_double_get
gsl_matrix_complex_long_double_get_col
gsl_matrix_complex_long_double_get_row
gsl_matrix_complex_long_double_isneg
gsl_matrix_complex_long_double_isnonneg
gsl_matrix_complex_long_double_isnull
gsl_matrix_complex_long_double_ispos
gsl_matrix_complex_long_double_memcpy
gsl_matrix_complex_long_double_mul_elements
gsl_matrix_complex_long_double_ptr
gsl_matrix_complex_long_double_row
gsl_matrix_complex_long_double_scale
gsl_matrix_complex_long_double_set
gsl_matrix_complex_long_double_set_all
gsl_matrix_complex_long_double_set_col
gsl_matrix_complex_long_double_set_identity
gsl_matrix_complex_long_double_set_row
gsl_matrix_complex_long_double_set_zero
gsl_matrix_complex_long_double_sub
gsl_matrix_complex_long_double_subcolumn
gsl_matrix_complex_long_double_subdiagonal
gsl_matrix_complex_long_double_submatrix
gsl_matrix_complex_long_double_subrow
gsl_matrix_complex_long_double_superdiagonal
gsl_matrix_complex_long_double_swap
gsl_matrix_complex_long_double_swap_columns
gsl_matrix_complex_long_double_swap_rowcol
gsl_matrix_complex_long_double_swap_rows
gsl_matrix_complex_long_double_transpose
gsl_matrix_complex_long_double_transpose_memcpy
gsl_matrix_complex_long_double_view_array
gsl_matrix_complex_long_double_view_array_with_tda
gsl_matrix_complex_long_double_view_vector
gsl_matrix_complex_long_double_view_vector_with_tda
gsl_matrix_complex_memcpy
gsl_matrix_complex_mul_elements
gsl_matrix_complex_ptr
gsl_matrix_complex_row
gsl_matrix_complex_scale
gsl_matrix_complex_set
gsl_matrix_complex_set_all
gsl_matrix_complex_set_col
gsl_matrix_complex_set_identity
gsl_matrix_complex_set_row
gsl_matrix_complex_set_zero
gsl_matrix_complex_sub
gsl_matrix_complex_subcolumn
gsl_matrix_complex_subdiagonal
gsl_matrix_complex_submatrix
gsl_matrix_complex_subrow
gsl_matrix_complex_superdiagonal
gsl_matrix_complex_swap
gsl_matrix_complex_swap_columns
gsl_matrix_complex_swap_rowcol
gsl_matrix_complex_swap_rows
gsl_matrix_complex_transpose
gsl_matrix_complex_transpose_memcpy
gsl_matrix_complex_view_array
gsl_matrix_complex_view_array_with_tda
gsl_matrix_complex_view_vector
gsl_matrix_complex_view_vector_with_tda
gsl_matrix_const_column
gsl_matrix_const_diagonal
gsl_matrix_const_ptr
gsl_matrix_const_row
gsl_matrix_const_subcolumn
gsl_matrix_const_subdiagonal
gsl_matrix_const_submatrix
gsl_matrix_const_subrow
gsl_matrix_const_superdiagonal
gsl_matrix_const_view_array
gsl_matrix_const_view_array_with_tda
gsl_matrix_const_view_vector
gsl_matrix_const_view_vector_with_tda
gsl_matrix_diagonal
gsl_matrix_div_elements
gsl_matrix_equal
gsl_matrix_float_add
gsl_matrix_float_add_constant
gsl_matrix_float_add_diagonal
gsl_matrix_float_alloc
gsl_matrix_float_alloc_from_block
gsl_matrix_float_alloc_from_matrix
gsl_matrix_float_calloc
gsl_matrix_float_column
gsl_matrix_float_const_column
gsl_matrix_float_const_diagonal
gsl_matrix_float_const_ptr
gsl_matrix_float_const_row
gsl_matrix_float_const_subcolumn
gsl_matrix_float_const_subdiagonal
gsl_matrix_float_const_submatrix
gsl_matrix_float_const_subrow
gsl_matrix_float_const_superdiagonal
gsl_matrix_float_const_view_array
gsl_matrix_float_const_view_array_with_tda
gsl_matrix_float_const_view_vector
gsl_matrix_float_const_view_vector_with_tda
gsl_matrix_float_diagonal
gsl_matrix_float_div_elements
gsl_matrix_float_equal
gsl_matrix_float_fprintf
gsl_matrix_float_fread
gsl_matrix_float_free
gsl_matrix_float_fscanf
gsl_matrix_float_fwrite
gsl_matrix_float_get
gsl_matrix_float_get_col
gsl_matrix_float_get_row
gsl_matrix_float_isneg
gsl_matrix_float_isnonneg
gsl_matrix_float_isnull
gsl_matrix_float_ispos
gsl_matrix_float_max
gsl_matrix_float_max_index
gsl_matrix_float_memcpy
gsl_matrix_float_min
gsl_matrix_float_min_index
gsl_matrix_float_minmax
gsl_matrix_float_minmax_index
gsl_matrix_float_mul_elements
gsl_matrix_float_ptr
gsl_matrix_float_row
gsl_matrix_float_scale
gsl_matrix_float_set
gsl_matrix_float_set_all
gsl_matrix_float_set_col
gsl_matrix_float_set_identity
gsl_matrix_float_set_row
gsl_matrix_float_set_zero
gsl_matrix_float_sub
gsl_matrix_float_subcolumn
gsl_matrix_float_subdiagonal
gsl_matrix_float_submatrix
gsl_matrix_float_subrow
gsl_matrix_float_superdiagonal
gsl_matrix_float_swap
gsl_matrix_float_swap_columns
gsl_matrix_float_swap_rowcol
gsl_matrix_float_swap_rows
gsl_matrix_float_transpose
gsl_matrix_float_transpose_memcpy
gsl_matrix_float_view_array
gsl_matrix_float_view_array_with_tda
gsl_matrix_float_view_vector
gsl_matrix_float_view_vector_with_tda
gsl_matrix_fprintf
gsl_matrix_fread
gsl_matrix_free
gsl_matrix_fscanf
gsl_matrix_fwrite
gsl_matrix_get
gsl_matrix_get_col
gsl_matrix_get_row
gsl_matrix_int_add
gsl_matrix_int_add_constant
gsl_matrix_int_add_diagonal
gsl_matrix_int_alloc
gsl_matrix_int_alloc_from_block
gsl_matrix_int_alloc_from_matrix
gsl_matrix_int_calloc
gsl_matrix_int_column
gsl_matrix_int_const_column
gsl_matrix_int_const_diagonal
gsl_matrix_int_const_ptr
gsl_matrix_int_const_row
gsl_matrix_int_const_subcolumn
gsl_matrix_int_const_subdiagonal
gsl_matrix_int_const_submatrix
gsl_matrix_int_const_subrow
gsl_matrix_int_const_superdiagonal
gsl_matrix_int_const_view_array
gsl_matrix_int_const_view_array_with_tda
gsl_matrix_int_const_view_vector
gsl_matrix_int_const_view_vector_with_tda
gsl_matrix_int_diagonal
gsl_matrix_int_div_elements
gsl_matrix_int_equal
gsl_matrix_int_fprintf
gsl_matrix_int_fread
gsl_matrix_int_free
gsl_matrix_int_fscanf
gsl_matrix_int_fwrite
gsl_matrix_int_get
gsl_matrix_int_get_col
gsl_matrix_int_get_row
gsl_matrix_int_isneg
gsl_matrix_int_isnonneg
gsl_matrix_int_isnull
gsl_matrix_int_ispos
gsl_matrix_int_max
gsl_matrix_int_max_index
gsl_matrix_int_memcpy
gsl_matrix_int_min
gsl_matrix_int_min_index
gsl_matrix_int_minmax
gsl_matrix_int_minmax_index
gsl_matrix_int_mul_elements
gsl_matrix_int_ptr
gsl_matrix_int_row
gsl_matrix_int_scale
gsl_matrix_int_set
gsl_matrix_int_set_all
gsl_matrix_int_set_col
gsl_matrix_int_set_identity
gsl_matrix_int_set_row
gsl_matrix_int_set_zero
gsl_matrix_int_sub
gsl_matrix_int_subcolumn
gsl_matrix_int_subdiagonal
gsl_matrix_int_submatrix
gsl_matrix_int_subrow
gsl_matrix_int_superdiagonal
gsl_matrix_int_swap
gsl_matrix_int_swap_columns
gsl_matrix_int_swap_rowcol
gsl_matrix_int_swap_rows
gsl_matrix_int_transpose
gsl_matrix_int_transpose_memcpy
gsl_matrix_int_view_array
gsl_matrix_int_view_array_with_tda
gsl_matrix_int_view_vector
gsl_matrix_int_view_vector_with_tda
gsl_matrix_isneg
gsl_matrix_isnonneg
gsl_matrix_isnull
gsl_matrix_ispos
gsl_matrix_long_add
gsl_matrix_long_add_constant
gsl_matrix_long_add_diagonal
gsl_matrix_long_alloc
gsl_matrix_long_alloc_from_block
gsl_matrix_long_alloc_from_matrix
gsl_matrix_long_calloc
gsl_matrix_long_column
gsl_matrix_long_const_column
gsl_matrix_long_const_diagonal
gsl_matrix_long_const_ptr
gsl_matrix_long_const_row
gsl_matrix_long_const_subcolumn
gsl_matrix_long_const_subdiagonal
gsl_matrix_long_const_submatrix
gsl_matrix_long_const_subrow
gsl_matrix_long_const_superdiagonal
gsl_matrix_long_const_view_array
gsl_matrix_long_const_view_array_with_tda
gsl_matrix_long_const_view_vector
gsl_matrix_long_const_view_vector_with_tda
gsl_matrix_long_diagonal
gsl_matrix_long_div_elements
gsl_matrix_long_double_add
gsl_matrix_long_double_add_constant
gsl_matrix_long_double_add_diagonal
gsl_matrix_long_double_alloc
gsl_matrix_long_double_alloc_from_block
gsl_matrix_long_double_alloc_from_matrix
gsl_matrix_long_double_calloc
gsl_matrix_long_double_column
gsl_matrix_long_double_const_column
gsl_matrix_long_double_const_diagonal
gsl_matrix_long_double_const_ptr
gsl_matrix_long_double_const_row
gsl_matrix_long_double_const_subcolumn
gsl_matrix_long_double_const_subdiagonal
gsl_matrix_long_double_const_submatrix
gsl_matrix_long_double_const_subrow
gsl_matrix_long_double_const_superdiagonal
gsl_matrix_long_double_const_view_array
gsl_matrix_long_double_const_view_array_with_tda
gsl_matrix_long_double_const_view_vector
gsl_matrix_long_double_const_view_vector_with_tda
gsl_matrix_long_double_diagonal
gsl_matrix_long_double_div_elements
gsl_matrix_long_double_equal
gsl_matrix_long_double_fprintf
gsl_matrix_long_double_fread
gsl_matrix_long_double_free
gsl_matrix_long_double_fscanf
gsl_matrix_long_double_fwrite
gsl_matrix_long_double_get
gsl_matrix_long_double_get_col
gsl_matrix_long_double_get_row
gsl_matrix_long_double_isneg
gsl_matrix_long_double_isnonneg
gsl_matrix_long_double_isnull
gsl_matrix_long_double_ispos
gsl_matrix_long_double_max
gsl_matrix_long_double_max_index
gsl_matrix_long_double_memcpy
gsl_matrix_long_double_min
gsl_matrix_long_double_min_index
gsl_matrix_long_double_minmax
gsl_matrix_long_double_minmax_index
gsl_matrix_long_double_mul_elements
gsl_matrix_long_double_ptr
gsl_matrix_long_double_row
gsl_matrix_long_double_scale
gsl_matrix_long_double_set
gsl_matrix_long_double_set_all
gsl_matrix_long_double_set_col
gsl_matrix_long_double_set_identity
gsl_matrix_long_double_set_row
gsl_matrix_long_double_set_zero
gsl_matrix_long_double_sub
gsl_matrix_long_double_subcolumn
gsl_matrix_long_double_subdiagonal
gsl_matrix_long_double_submatrix
gsl_matrix_long_double_subrow
gsl_matrix_long_double_superdiagonal
gsl_matrix_long_double_swap
gsl_matrix_long_double_swap_columns
gsl_matrix_long_double_swap_rowcol
gsl_matrix_long_double_swap_rows
gsl_matrix_long_double_transpose
gsl_matrix_long_double_transpose_memcpy
gsl_matrix_long_double_view_array
gsl_matrix_long_double_view_array_with_tda
gsl_matrix_long_double_view_vector
gsl_matrix_long_double_view_vector_with_tda
gsl_matrix_long_equal
gsl_matrix_long_fprintf
gsl_matrix_long_fread
gsl_matrix_long_free
gsl_matrix_long_fscanf
gsl_matrix_long_fwrite
gsl_matrix_long_get
gsl_matrix_long_get_col
gsl_matrix_long_get_row
gsl_matrix_long_isneg
gsl_matrix_long_isnonneg
gsl_matrix_long_isnull
gsl_matrix_long_ispos
gsl_matrix_long_max
gsl_matrix_long_max_index
gsl_matrix_long_memcpy
gsl_matrix_long_min
gsl_matrix_long_min_index
gsl_matrix_long_minmax
gsl_matrix_long_minmax_index
gsl_matrix_long_mul_elements
gsl_matrix_long_ptr
gsl_matrix_long_row
gsl_matrix_long_scale
gsl_matrix_long_set
gsl_matrix_long_set_all
gsl_matrix_long_set_col
gsl_matrix_long_set_identity
gsl_matrix_long_set_row
gsl_matrix_long_set_zero
gsl_matrix_long_sub
gsl_matrix_long_subcolumn
gsl_matrix_long_subdiagonal
gsl_matrix_long_submatrix
gsl_matrix_long_subrow
gsl_matrix_long_superdiagonal
gsl_matrix_long_swap
gsl_matrix_long_swap_columns
gsl_matrix_long_swap_rowcol
gsl_matrix_long_swap_rows
gsl_matrix_long_transpose
gsl_matrix_long_transpose_memcpy
gsl_matrix_long_view_array
gsl_matrix_long_view_array_with_tda
gsl_matrix_long_view_vector
gsl_matrix_long_view_vector_with_tda
gsl_matrix_max
gsl_matrix_max_index
gsl_matrix_memcpy
gsl_matrix_min
gsl_matrix_min_index
gsl_matrix_minmax
gsl_matrix_minmax_index
gsl_matrix_mul_elements
gsl_matrix_ptr
gsl_matrix_row
gsl_matrix_scale
gsl_matrix_set
gsl_matrix_set_all
gsl_matrix_set_col
gsl_matrix_set_identity
gsl_matrix_set_row
gsl_matrix_set_zero
gsl_matrix_short_add
gsl_matrix_short_add_constant
gsl_matrix_short_add_diagonal
gsl_matrix_short_alloc
gsl_matrix_short_alloc_from_block
gsl_matrix_short_alloc_from_matrix
gsl_matrix_short_calloc
gsl_matrix_short_column
gsl_matrix_short_const_column
gsl_matrix_short_const_diagonal
gsl_matrix_short_const_ptr
gsl_matrix_short_const_row
gsl_matrix_short_const_subcolumn
gsl_matrix_short_const_subdiagonal
gsl_matrix_short_const_submatrix
gsl_matrix_short_const_subrow
gsl_matrix_short_const_superdiagonal
gsl_matrix_short_const_view_array
gsl_matrix_short_const_view_array_with_tda
gsl_matrix_short_const_view_vector
gsl_matrix_short_const_view_vector_with_tda
gsl_matrix_short_diagonal
gsl_matrix_short_div_elements
gsl_matrix_short_equal
gsl_matrix_short_fprintf
gsl_matrix_short_fread
gsl_matrix_short_free
gsl_matrix_short_fscanf
gsl_matrix_short_fwrite
gsl_matrix_short_get
gsl_matrix_short_get_col
gsl_matrix_short_get_row
gsl_matrix_short_isneg
gsl_matrix_short_isnonneg
gsl_matrix_short_isnull
gsl_matrix_short_ispos
gsl_matrix_short_max
gsl_matrix_short_max_index
gsl_matrix_short_memcpy
gsl_matrix_short_min
gsl_matrix_short_min_index
gsl_matrix_short_minmax
gsl_matrix_short_minmax_index
gsl_matrix_short_mul_elements
gsl_matrix_short_ptr
gsl_matrix_short_row
gsl_matrix_short_scale
gsl_matrix_short_set
gsl_matrix_short_set_all
gsl_matrix_short_set_col
gsl_matrix_short_set_identity
gsl_matrix_short_set_row
gsl_matrix_short_set_zero
gsl_matrix_short_sub
gsl_matrix_short_subcolumn
gsl_matrix_short_subdiagonal
gsl_matrix_short_submatrix
gsl_matrix_short_subrow
gsl_matrix_short_superdiagonal
gsl_matrix_short_swap
gsl_matrix_short_swap_columns
gsl_matrix_short_swap_rowcol
gsl_matrix_short_swap_rows
gsl_matrix_short_transpose
gsl_matrix_short_transpose_memcpy
gsl_matrix_short_view_array
gsl_matrix_short_view_array_with_tda
gsl_matrix_short_view_vector
gsl_matrix_short_view_vector_with_tda
gsl_matrix_sub
gsl_matrix_subcolumn
gsl_matrix_subdiagonal
gsl_matrix_submatrix
gsl_matrix_subrow
gsl_matrix_superdiagonal
gsl_matrix_swap
gsl_matrix_swap_columns
gsl_matrix_swap_rowcol
gsl_matrix_swap_rows
gsl_matrix_transpose
gsl_matrix_transpose_memcpy
gsl_matrix_uchar_add
gsl_matrix_uchar_add_constant
gsl_matrix_uchar_add_diagonal
gsl_matrix_uchar_alloc
gsl_matrix_uchar_alloc_from_block
gsl_matrix_uchar_alloc_from_matrix
gsl_matrix_uchar_calloc
gsl_matrix_uchar_column
gsl_matrix_uchar_const_column
gsl_matrix_uchar_const_diagonal
gsl_matrix_uchar_const_ptr
gsl_matrix_uchar_const_row
gsl_matrix_uchar_const_subcolumn
gsl_matrix_uchar_const_subdiagonal
gsl_matrix_uchar_const_submatrix
gsl_matrix_uchar_const_subrow
gsl_matrix_uchar_const_superdiagonal
gsl_matrix_uchar_const_view_array
gsl_matrix_uchar_const_view_array_with_tda
gsl_matrix_uchar_const_view_vector
gsl_matrix_uchar_const_view_vector_with_tda
gsl_matrix_uchar_diagonal
gsl_matrix_uchar_div_elements
gsl_matrix_uchar_equal
gsl_matrix_uchar_fprintf
gsl_matrix_uchar_fread
gsl_matrix_uchar_free
gsl_matrix_uchar_fscanf
gsl_matrix_uchar_fwrite
gsl_matrix_uchar_get
gsl_matrix_uchar_get_col
gsl_matrix_uchar_get_row
gsl_matrix_uchar_isneg
gsl_matrix_uchar_isnonneg
gsl_matrix_uchar_isnull
gsl_matrix_uchar_ispos
gsl_matrix_uchar_max
gsl_matrix_uchar_max_index
gsl_matrix_uchar_memcpy
gsl_matrix_uchar_min
gsl_matrix_uchar_min_index
gsl_matrix_uchar_minmax
gsl_matrix_uchar_minmax_index
gsl_matrix_uchar_mul_elements
gsl_matrix_uchar_ptr
gsl_matrix_uchar_row
gsl_matrix_uchar_scale
gsl_matrix_uchar_set
gsl_matrix_uchar_set_all
gsl_matrix_uchar_set_col
gsl_matrix_uchar_set_identity
gsl_matrix_uchar_set_row
gsl_matrix_uchar_set_zero
gsl_matrix_uchar_sub
gsl_matrix_uchar_subcolumn
gsl_matrix_uchar_subdiagonal
gsl_matrix_uchar_submatrix
gsl_matrix_uchar_subrow
gsl_matrix_uchar_superdiagonal
gsl_matrix_uchar_swap
gsl_matrix_uchar_swap_columns
gsl_matrix_uchar_swap_rowcol
gsl_matrix_uchar_swap_rows
gsl_matrix_uchar_transpose
gsl_matrix_uchar_transpose_memcpy
gsl_matrix_uchar_view_array
gsl_matrix_uchar_view_array_with_tda
gsl_matrix_uchar_view_vector
gsl_matrix_uchar_view_vector_with_tda
gsl_matrix_uint_add
gsl_matrix_uint_add_constant
gsl_matrix_uint_add_diagonal
gsl_matrix_uint_alloc
gsl_matrix_uint_alloc_from_block
gsl_matrix_uint_alloc_from_matrix
gsl_matrix_uint_calloc
gsl_matrix_uint_column
gsl_matrix_uint_const_column
gsl_matrix_uint_const_diagonal
gsl_matrix_uint_const_ptr
gsl_matrix_uint_const_row
gsl_matrix_uint_const_subcolumn
gsl_matrix_uint_const_subdiagonal
gsl_matrix_uint_const_submatrix
gsl_matrix_uint_const_subrow
gsl_matrix_uint_const_superdiagonal
gsl_matrix_uint_const_view_array
gsl_matrix_uint_const_view_array_with_tda
gsl_matrix_uint_const_view_vector
gsl_matrix_uint_const_view_vector_with_tda
gsl_matrix_uint_diagonal
gsl_matrix_uint_div_elements
gsl_matrix_uint_equal
gsl_matrix_uint_fprintf
gsl_matrix_uint_fread
gsl_matrix_uint_free
gsl_matrix_uint_fscanf
gsl_matrix_uint_fwrite
gsl_matrix_uint_get
gsl_matrix_uint_get_col
gsl_matrix_uint_get_row
gsl_matrix_uint_isneg
gsl_matrix_uint_isnonneg
gsl_matrix_uint_isnull
gsl_matrix_uint_ispos
gsl_matrix_uint_max
gsl_matrix_uint_max_index
gsl_matrix_uint_memcpy
gsl_matrix_uint_min
gsl_matrix_uint_min_index
gsl_matrix_uint_minmax
gsl_matrix_uint_minmax_index
gsl_matrix_uint_mul_elements
gsl_matrix_uint_ptr
gsl_matrix_uint_row
gsl_matrix_uint_scale
gsl_matrix_uint_set
gsl_matrix_uint_set_all
gsl_matrix_uint_set_col
gsl_matrix_uint_set_identity
gsl_matrix_uint_set_row
gsl_matrix_uint_set_zero
gsl_matrix_uint_sub
gsl_matrix_uint_subcolumn
gsl_matrix_uint_subdiagonal
gsl_matrix_uint_submatrix
gsl_matrix_uint_subrow
gsl_matrix_uint_superdiagonal
gsl_matrix_uint_swap
gsl_matrix_uint_swap_columns
gsl_matrix_uint_swap_rowcol
gsl_matrix_uint_swap_rows
gsl_matrix_uint_transpose
gsl_matrix_uint_transpose_memcpy
gsl_matrix_uint_view_array
gsl_matrix_uint_view_array_with_tda
gsl_matrix_uint_view_vector
gsl_matrix_uint_view_vector_with_tda
gsl_matrix_ulong_add
gsl_matrix_ulong_add_constant
gsl_matrix_ulong_add_diagonal
gsl_matrix_ulong_alloc
gsl_matrix_ulong_alloc_from_block
gsl_matrix_ulong_alloc_from_matrix
gsl_matrix_ulong_calloc
gsl_matrix_ulong_column
gsl_matrix_ulong_const_column
gsl_matrix_ulong_const_diagonal
gsl_matrix_ulong_const_ptr
gsl_matrix_ulong_const_row
gsl_matrix_ulong_const_subcolumn
gsl_matrix_ulong_const_subdiagonal
gsl_matrix_ulong_const_submatrix
gsl_matrix_ulong_const_subrow
gsl_matrix_ulong_const_superdiagonal
gsl_matrix_ulong_const_view_array
gsl_matrix_ulong_const_view_array_with_tda
gsl_matrix_ulong_const_view_vector
gsl_matrix_ulong_const_view_vector_with_tda
gsl_matrix_ulong_diagonal
gsl_matrix_ulong_div_elements
gsl_matrix_ulong_equal
gsl_matrix_ulong_fprintf
gsl_matrix_ulong_fread
gsl_matrix_ulong_free
gsl_matrix_ulong_fscanf
gsl_matrix_ulong_fwrite
gsl_matrix_ulong_get
gsl_matrix_ulong_get_col
gsl_matrix_ulong_get_row
gsl_matrix_ulong_isneg
gsl_matrix_ulong_isnonneg
gsl_matrix_ulong_isnull
gsl_matrix_ulong_ispos
gsl_matrix_ulong_max
gsl_matrix_ulong_max_index
gsl_matrix_ulong_memcpy
gsl_matrix_ulong_min
gsl_matrix_ulong_min_index
gsl_matrix_ulong_minmax
gsl_matrix_ulong_minmax_index
gsl_matrix_ulong_mul_elements
gsl_matrix_ulong_ptr
gsl_matrix_ulong_row
gsl_matrix_ulong_scale
gsl_matrix_ulong_set
gsl_matrix_ulong_set_all
gsl_matrix_ulong_set_col
gsl_matrix_ulong_set_identity
gsl_matrix_ulong_set_row
gsl_matrix_ulong_set_zero
gsl_matrix_ulong_sub
gsl_matrix_ulong_subcolumn
gsl_matrix_ulong_subdiagonal
gsl_matrix_ulong_submatrix
gsl_matrix_ulong_subrow
gsl_matrix_ulong_superdiagonal
gsl_matrix_ulong_swap
gsl_matrix_ulong_swap_columns
gsl_matrix_ulong_swap_rowcol
gsl_matrix_ulong_swap_rows
gsl_matrix_ulong_transpose
gsl_matrix_ulong_transpose_memcpy
gsl_matrix_ulong_view_array
gsl_matrix_ulong_view_array_with_tda
gsl_matrix_ulong_view_vector
gsl_matrix_ulong_view_vector_with_tda
gsl_matrix_ushort_add
gsl_matrix_ushort_add_constant
gsl_matrix_ushort_add_diagonal
gsl_matrix_ushort_alloc
gsl_matrix_ushort_alloc_from_block
gsl_matrix_ushort_alloc_from_matrix
gsl_matrix_ushort_calloc
gsl_matrix_ushort_column
gsl_matrix_ushort_const_column
gsl_matrix_ushort_const_diagonal
gsl_matrix_ushort_const_ptr
gsl_matrix_ushort_const_row
gsl_matrix_ushort_const_subcolumn
gsl_matrix_ushort_const_subdiagonal
gsl_matrix_ushort_const_submatrix
gsl_matrix_ushort_const_subrow
gsl_matrix_ushort_const_superdiagonal
gsl_matrix_ushort_const_view_array
gsl_matrix_ushort_const_view_array_with_tda
gsl_matrix_ushort_const_view_vector
gsl_matrix_ushort_const_view_vector_with_tda
gsl_matrix_ushort_diagonal
gsl_matrix_ushort_div_elements
gsl_matrix_ushort_equal
gsl_matrix_ushort_fprintf
gsl_matrix_ushort_fread
gsl_matrix_ushort_free
gsl_matrix_ushort_fscanf
gsl_matrix_ushort_fwrite
gsl_matrix_ushort_get
gsl_matrix_ushort_get_col
gsl_matrix_ushort_get_row
gsl_matrix_ushort_isneg
gsl_matrix_ushort_isnonneg
gsl_matrix_ushort_isnull
gsl_matrix_ushort_ispos
gsl_matrix_ushort_max
gsl_matrix_ushort_max_index
gsl_matrix_ushort_memcpy
gsl_matrix_ushort_min
gsl_matrix_ushort_min_index
gsl_matrix_ushort_minmax
gsl_matrix_ushort_minmax_index
gsl_matrix_ushort_mul_elements
gsl_matrix_ushort_ptr
gsl_matrix_ushort_row
gsl_matrix_ushort_scale
gsl_matrix_ushort_set
gsl_matrix_ushort_set_all
gsl_matrix_ushort_set_col
gsl_matrix_ushort_set_identity
gsl_matrix_ushort_set_row
gsl_matrix_ushort_set_zero
gsl_matrix_ushort_sub
gsl_matrix_ushort_subcolumn
gsl_matrix_ushort_subdiagonal
gsl_matrix_ushort_submatrix
gsl_matrix_ushort_subrow
gsl_matrix_ushort_superdiagonal
gsl_matrix_ushort_swap
gsl_matrix_ushort_swap_columns
gsl_matrix_ushort_swap_rowcol
gsl_matrix_ushort_swap_rows
gsl_matrix_ushort_transpose
gsl_matrix_ushort_transpose_memcpy
gsl_matrix_ushort_view_array
gsl_matrix_ushort_view_array_with_tda
gsl_matrix_ushort_view_vector
gsl_matrix_ushort_view_vector_with_tda
gsl_matrix_view_array
gsl_matrix_view_array_with_tda
gsl_matrix_view_vector
gsl_matrix_view_vector_with_tda
gsl_max
gsl_message
gsl_message_mask
gsl_min
gsl_min_find_bracket
gsl_min_fminimizer_alloc
gsl_min_fminimizer_brent
gsl_min_fminimizer_f_lower
gsl_min_fminimizer_f_minimum
gsl_min_fminimizer_f_upper
gsl_min_fminimizer_free
gsl_min_fminimizer_goldensection
gsl_min_fminimizer_iterate
gsl_min_fminimizer_minimum
gsl_min_fminimizer_name
gsl_min_fminimizer_quad_golden
gsl_min_fminimizer_set
gsl_min_fminimizer_set_with_values
gsl_min_fminimizer_x_lower
gsl_min_fminimizer_x_minimum
gsl_min_fminimizer_x_upper
gsl_min_test_interval
gsl_monte_miser_alloc
gsl_monte_miser_free
gsl_monte_miser_init
gsl_monte_miser_integrate
gsl_monte_miser_params_get
gsl_monte_miser_params_set
gsl_monte_plain_alloc
gsl_monte_plain_free
gsl_monte_plain_init
gsl_monte_plain_integrate
gsl_monte_vegas_alloc
gsl_monte_vegas_chisq
gsl_monte_vegas_free
gsl_monte_vegas_init
gsl_monte_vegas_integrate
gsl_monte_vegas_params_get
gsl_monte_vegas_params_set
gsl_monte_vegas_runval
gsl_multifit_covar
gsl_multifit_covar_QRPT
gsl_multifit_eval_wdf
gsl_multifit_eval_wf
gsl_multifit_fdfridge_alloc
gsl_multifit_fdfridge_driver
gsl_multifit_fdfridge_free
gsl_multifit_fdfridge_iterate
gsl_multifit_fdfridge_name
gsl_multifit_fdfridge_niter
gsl_multifit_fdfridge_position
gsl_multifit_fdfridge_residual
gsl_multifit_fdfridge_set
gsl_multifit_fdfridge_set2
gsl_multifit_fdfridge_set3
gsl_multifit_fdfridge_wset
gsl_multifit_fdfridge_wset2
gsl_multifit_fdfridge_wset3
gsl_multifit_fdfsolver_alloc
gsl_multifit_fdfsolver_dif_df
gsl_multifit_fdfsolver_driver
gsl_multifit_fdfsolver_free
gsl_multifit_fdfsolver_iterate
gsl_multifit_fdfsolver_jac
gsl_multifit_fdfsolver_lmder
gsl_multifit_fdfsolver_lmniel
gsl_multifit_fdfsolver_lmsder
gsl_multifit_fdfsolver_name
gsl_multifit_fdfsolver_niter
gsl_multifit_fdfsolver_position
gsl_multifit_fdfsolver_residual
gsl_multifit_fdfsolver_set
gsl_multifit_fdfsolver_test
gsl_multifit_fdfsolver_wset
gsl_multifit_fsolver_alloc
gsl_multifit_fsolver_driver
gsl_multifit_fsolver_free
gsl_multifit_fsolver_iterate
gsl_multifit_fsolver_name
gsl_multifit_fsolver_position
gsl_multifit_fsolver_set
gsl_multifit_gradient
gsl_multifit_linear
gsl_multifit_linear_L_decomp
gsl_multifit_linear_Lk
gsl_multifit_linear_Lsobolev
gsl_multifit_linear_alloc
gsl_multifit_linear_applyW
gsl_multifit_linear_bsvd
gsl_multifit_linear_est
gsl_multifit_linear_free
gsl_multifit_linear_genform1
gsl_multifit_linear_genform2
gsl_multifit_linear_lcorner
gsl_multifit_linear_lcorner2
gsl_multifit_linear_lcurve
gsl_multifit_linear_lreg
gsl_multifit_linear_rcond
gsl_multifit_linear_residuals
gsl_multifit_linear_solve
gsl_multifit_linear_stdform1
gsl_multifit_linear_stdform2
gsl_multifit_linear_svd
gsl_multifit_linear_wgenform2
gsl_multifit_linear_wstdform1
gsl_multifit_linear_wstdform2
gsl_multifit_robust
gsl_multifit_robust_alloc
gsl_multifit_robust_bisquare
gsl_multifit_robust_cauchy
gsl_multifit_robust_default
gsl_multifit_robust_est
gsl_multifit_robust_fair
gsl_multifit_robust_free
gsl_multifit_robust_huber
gsl_multifit_robust_maxiter
gsl_multifit_robust_name
gsl_multifit_robust_ols
gsl_multifit_robust_residuals
gsl_multifit_robust_statistics
gsl_multifit_robust_tune
gsl_multifit_robust_weights
gsl_multifit_robust_welsch
gsl_multifit_test_delta
gsl_multifit_test_gradient
gsl_multifit_wlinear
gsl_multifit_wlinear_svd
gsl_multifit_wlinear_usvd
gsl_multilarge_linear_L_decomp
gsl_multilarge_linear_accumulate
gsl_multilarge_linear_alloc
gsl_multilarge_linear_free
gsl_multilarge_linear_genform1
gsl_multilarge_linear_genform2
gsl_multilarge_linear_lcurve
gsl_multilarge_linear_name
gsl_multilarge_linear_normal
gsl_multilarge_linear_rcond
gsl_multilarge_linear_reset
gsl_multilarge_linear_solve
gsl_multilarge_linear_stdform1
gsl_multilarge_linear_stdform2
gsl_multilarge_linear_tsqr
gsl_multilarge_linear_wstdform1
gsl_multilarge_linear_wstdform2
gsl_multimin_diff
gsl_multimin_fdfminimizer_alloc
gsl_multimin_fdfminimizer_conjugate_fr
gsl_multimin_fdfminimizer_conjugate_pr
gsl_multimin_fdfminimizer_dx
gsl_multimin_fdfminimizer_free
gsl_multimin_fdfminimizer_gradient
gsl_multimin_fdfminimizer_iterate
gsl_multimin_fdfminimizer_minimum
gsl_multimin_fdfminimizer_name
gsl_multimin_fdfminimizer_restart
gsl_multimin_fdfminimizer_set
gsl_multimin_fdfminimizer_steepest_descent
gsl_multimin_fdfminimizer_vector_bfgs
gsl_multimin_fdfminimizer_vector_bfgs2
gsl_multimin_fdfminimizer_x
gsl_multimin_fminimizer_alloc
gsl_multimin_fminimizer_free
gsl_multimin_fminimizer_iterate
gsl_multimin_fminimizer_minimum
gsl_multimin_fminimizer_name
gsl_multimin_fminimizer_nmsimplex
gsl_multimin_fminimizer_nmsimplex2
gsl_multimin_fminimizer_nmsimplex2rand
gsl_multimin_fminimizer_set
gsl_multimin_fminimizer_size
gsl_multimin_fminimizer_x
gsl_multimin_test_gradient
gsl_multimin_test_size
gsl_multiroot_fdfsolver_alloc
gsl_multiroot_fdfsolver_dx
gsl_multiroot_fdfsolver_f
gsl_multiroot_fdfsolver_free
gsl_multiroot_fdfsolver_gnewton
gsl_multiroot_fdfsolver_hybridj
gsl_multiroot_fdfsolver_hybridsj
gsl_multiroot_fdfsolver_iterate
gsl_multiroot_fdfsolver_name
gsl_multiroot_fdfsolver_newton
gsl_multiroot_fdfsolver_root
gsl_multiroot_fdfsolver_set
gsl_multiroot_fdjacobian
gsl_multiroot_fsolver_alloc
gsl_multiroot_fsolver_broyden
gsl_multiroot_fsolver_dnewton
gsl_multiroot_fsolver_dx
gsl_multiroot_fsolver_f
gsl_multiroot_fsolver_free
gsl_multiroot_fsolver_hybrid
gsl_multiroot_fsolver_hybrids
gsl_multiroot_fsolver_iterate
gsl_multiroot_fsolver_name
gsl_multiroot_fsolver_root
gsl_multiroot_fsolver_set
gsl_multiroot_test_delta
gsl_multiroot_test_residual
gsl_multiset_alloc
gsl_multiset_calloc
gsl_multiset_data
gsl_multiset_fprintf
gsl_multiset_fread
gsl_multiset_free
gsl_multiset_fscanf
gsl_multiset_fwrite
gsl_multiset_get
gsl_multiset_init_first
gsl_multiset_init_last
gsl_multiset_k
gsl_multiset_memcpy
gsl_multiset_n
gsl_multiset_next
gsl_multiset_prev
gsl_multiset_valid
gsl_nan
gsl_neginf
gsl_ntuple_bookdata
gsl_ntuple_close
gsl_ntuple_create
gsl_ntuple_open
gsl_ntuple_project
gsl_ntuple_read
gsl_ntuple_write
gsl_odeiv2_control_alloc
gsl_odeiv2_control_errlevel
gsl_odeiv2_control_free
gsl_odeiv2_control_hadjust
gsl_odeiv2_control_init
gsl_odeiv2_control_name
gsl_odeiv2_control_scaled
gsl_odeiv2_control_scaled_new
gsl_odeiv2_control_set_driver
gsl_odeiv2_control_standard
gsl_odeiv2_control_standard_new
gsl_odeiv2_control_y_new
gsl_odeiv2_control_yp_new
gsl_odeiv2_driver_alloc_scaled_new
gsl_odeiv2_driver_alloc_standard_new
gsl_odeiv2_driver_alloc_y_new
gsl_odeiv2_driver_alloc_yp_new
gsl_odeiv2_driver_apply
gsl_odeiv2_driver_apply_fixed_step
gsl_odeiv2_driver_free
gsl_odeiv2_driver_reset
gsl_odeiv2_driver_reset_hstart
gsl_odeiv2_driver_set_hmax
gsl_odeiv2_driver_set_hmin
gsl_odeiv2_driver_set_nmax
gsl_odeiv2_evolve_alloc
gsl_odeiv2_evolve_apply
gsl_odeiv2_evolve_apply_fixed_step
gsl_odeiv2_evolve_free
gsl_odeiv2_evolve_reset
gsl_odeiv2_evolve_set_driver
gsl_odeiv2_step_alloc
gsl_odeiv2_step_apply
gsl_odeiv2_step_bsimp
gsl_odeiv2_step_free
gsl_odeiv2_step_msadams
gsl_odeiv2_step_msbdf
gsl_odeiv2_step_name
gsl_odeiv2_step_order
gsl_odeiv2_step_reset
gsl_odeiv2_step_rk1imp
gsl_odeiv2_step_rk2
gsl_odeiv2_step_rk2imp
gsl_odeiv2_step_rk4
gsl_odeiv2_step_rk4imp
gsl_odeiv2_step_rk8pd
gsl_odeiv2_step_rkck
gsl_odeiv2_step_rkf45
gsl_odeiv2_step_set_driver
gsl_odeiv_control_alloc
gsl_odeiv_control_free
gsl_odeiv_control_hadjust
gsl_odeiv_control_init
gsl_odeiv_control_name
gsl_odeiv_control_scaled
gsl_odeiv_control_scaled_new
gsl_odeiv_control_standard
gsl_odeiv_control_standard_new
gsl_odeiv_control_y_new
gsl_odeiv_control_yp_new
gsl_odeiv_evolve_alloc
gsl_odeiv_evolve_apply
gsl_odeiv_evolve_free
gsl_odeiv_evolve_reset
gsl_odeiv_step_alloc
gsl_odeiv_step_apply
gsl_odeiv_step_bsimp
gsl_odeiv_step_free
gsl_odeiv_step_gear1
gsl_odeiv_step_gear2
gsl_odeiv_step_name
gsl_odeiv_step_order
gsl_odeiv_step_reset
gsl_odeiv_step_rk2
gsl_odeiv_step_rk2imp
gsl_odeiv_step_rk2simp
gsl_odeiv_step_rk4
gsl_odeiv_step_rk4imp
gsl_odeiv_step_rk8pd
gsl_odeiv_step_rkck
gsl_odeiv_step_rkf45
gsl_permutation_alloc
gsl_permutation_calloc
gsl_permutation_canonical_cycles
gsl_permutation_canonical_to_linear
gsl_permutation_data
gsl_permutation_fprintf
gsl_permutation_fread
gsl_permutation_free
gsl_permutation_fscanf
gsl_permutation_fwrite
gsl_permutation_get
gsl_permutation_init
gsl_permutation_inverse
gsl_permutation_inversions
gsl_permutation_linear_cycles
gsl_permutation_linear_to_canonical
gsl_permutation_memcpy
gsl_permutation_mul
gsl_permutation_next
gsl_permutation_prev
gsl_permutation_reverse
gsl_permutation_size
gsl_permutation_swap
gsl_permutation_valid
gsl_permute
gsl_permute_char
gsl_permute_char_inverse
gsl_permute_complex
gsl_permute_complex_float
gsl_permute_complex_float_inverse
gsl_permute_complex_inverse
gsl_permute_complex_long_double
gsl_permute_complex_long_double_inverse
gsl_permute_float
gsl_permute_float_inverse
gsl_permute_int
gsl_permute_int_inverse
gsl_permute_inverse
gsl_permute_long
gsl_permute_long_double
gsl_permute_long_double_inverse
gsl_permute_long_inverse
gsl_permute_short
gsl_permute_short_inverse
gsl_permute_uchar
gsl_permute_uchar_inverse
gsl_permute_uint
gsl_permute_uint_inverse
gsl_permute_ulong
gsl_permute_ulong_inverse
gsl_permute_ushort
gsl_permute_ushort_inverse
gsl_permute_vector
gsl_permute_vector_char
gsl_permute_vector_char_inverse
gsl_permute_vector_complex
gsl_permute_vector_complex_float
gsl_permute_vector_complex_float_inverse
gsl_permute_vector_complex_inverse
gsl_permute_vector_complex_long_double
gsl_permute_vector_complex_long_double_inverse
gsl_permute_vector_float
gsl_permute_vector_float_inverse
gsl_permute_vector_int
gsl_permute_vector_int_inverse
gsl_permute_vector_inverse
gsl_permute_vector_long
gsl_permute_vector_long_double
gsl_permute_vector_long_double_inverse
gsl_permute_vector_long_inverse
gsl_permute_vector_short
gsl_permute_vector_short_inverse
gsl_permute_vector_uchar
gsl_permute_vector_uchar_inverse
gsl_permute_vector_uint
gsl_permute_vector_uint_inverse
gsl_permute_vector_ulong
gsl_permute_vector_ulong_inverse
gsl_permute_vector_ushort
gsl_permute_vector_ushort_inverse
gsl_poly_complex_eval
gsl_poly_complex_solve
gsl_poly_complex_solve_cubic
gsl_poly_complex_solve_quadratic
gsl_poly_complex_workspace_alloc
gsl_poly_complex_workspace_free
gsl_poly_dd_eval
gsl_poly_dd_hermite_init
gsl_poly_dd_init
gsl_poly_dd_taylor
gsl_poly_eval
gsl_poly_eval_derivs
gsl_poly_solve_cubic
gsl_poly_solve_quadratic
gsl_posinf
gsl_pow_2
gsl_pow_3
gsl_pow_4
gsl_pow_5
gsl_pow_6
gsl_pow_7
gsl_pow_8
gsl_pow_9
gsl_pow_int
gsl_pow_uint
gsl_prec_eps
gsl_prec_root3_eps
gsl_prec_root4_eps
gsl_prec_root5_eps
gsl_prec_root6_eps
gsl_prec_sqrt_eps
gsl_qrng_alloc
gsl_qrng_clone
gsl_qrng_free
gsl_qrng_get
gsl_qrng_halton
gsl_qrng_init
gsl_qrng_memcpy
gsl_qrng_name
gsl_qrng_niederreiter_2
gsl_qrng_reversehalton
gsl_qrng_size
gsl_qrng_sobol
gsl_qrng_state
gsl_ran_bernoulli
gsl_ran_bernoulli_pdf
gsl_ran_beta
gsl_ran_beta_pdf
gsl_ran_binomial
gsl_ran_binomial_knuth
gsl_ran_binomial_pdf
gsl_ran_binomial_tpe
gsl_ran_bivariate_gaussian
gsl_ran_bivariate_gaussian_pdf
gsl_ran_cauchy
gsl_ran_cauchy_pdf
gsl_ran_chisq
gsl_ran_chisq_pdf
gsl_ran_choose
gsl_ran_dir_2d
gsl_ran_dir_2d_trig_method
gsl_ran_dir_3d
gsl_ran_dir_nd
gsl_ran_dirichlet
gsl_ran_dirichlet_lnpdf
gsl_ran_dirichlet_pdf
gsl_ran_discrete
gsl_ran_discrete_free
gsl_ran_discrete_pdf
gsl_ran_discrete_preproc
gsl_ran_erlang
gsl_ran_erlang_pdf
gsl_ran_exponential
gsl_ran_exponential_pdf
gsl_ran_exppow
gsl_ran_exppow_pdf
gsl_ran_fdist
gsl_ran_fdist_pdf
gsl_ran_flat
gsl_ran_flat_pdf
gsl_ran_gamma
gsl_ran_gamma_int
gsl_ran_gamma_knuth
gsl_ran_gamma_mt
gsl_ran_gamma_pdf
gsl_ran_gaussian
gsl_ran_gaussian_pdf
gsl_ran_gaussian_ratio_method
gsl_ran_gaussian_tail
gsl_ran_gaussian_tail_pdf
gsl_ran_gaussian_ziggurat
gsl_ran_geometric
gsl_ran_geometric_pdf
gsl_ran_gumbel1
gsl_ran_gumbel1_pdf
gsl_ran_gumbel2
gsl_ran_gumbel2_pdf
gsl_ran_hypergeometric
gsl_ran_hypergeometric_pdf
gsl_ran_landau
gsl_ran_landau_pdf
gsl_ran_laplace
gsl_ran_laplace_pdf
gsl_ran_levy
gsl_ran_levy_skew
gsl_ran_logarithmic
gsl_ran_logarithmic_pdf
gsl_ran_logistic
gsl_ran_logistic_pdf
gsl_ran_lognormal
gsl_ran_lognormal_pdf
gsl_ran_multinomial
gsl_ran_multinomial_lnpdf
gsl_ran_multinomial_pdf
gsl_ran_negative_binomial
gsl_ran_negative_binomial_pdf
gsl_ran_pareto
gsl_ran_pareto_pdf
gsl_ran_pascal
gsl_ran_pascal_pdf
gsl_ran_poisson
gsl_ran_poisson_array
gsl_ran_poisson_pdf
gsl_ran_rayleigh
gsl_ran_rayleigh_pdf
gsl_ran_rayleigh_tail
gsl_ran_rayleigh_tail_pdf
gsl_ran_sample
gsl_ran_shuffle
gsl_ran_tdist
gsl_ran_tdist_pdf
gsl_ran_ugaussian
gsl_ran_ugaussian_pdf
gsl_ran_ugaussian_ratio_method
gsl_ran_ugaussian_tail
gsl_ran_ugaussian_tail_pdf
gsl_ran_weibull
gsl_ran_weibull_pdf
gsl_rng_alloc
gsl_rng_borosh13
gsl_rng_clone
gsl_rng_cmrg
gsl_rng_coveyou
gsl_rng_default
gsl_rng_default_seed
gsl_rng_env_setup
gsl_rng_fishman18
gsl_rng_fishman20
gsl_rng_fishman2x
gsl_rng_fread
gsl_rng_free
gsl_rng_fwrite
gsl_rng_generator_types
gsl_rng_get
gsl_rng_gfsr4
gsl_rng_knuthran
gsl_rng_knuthran2
gsl_rng_knuthran2002
gsl_rng_lecuyer21
gsl_rng_max
gsl_rng_memcpy
gsl_rng_min
gsl_rng_minstd
gsl_rng_mrg
gsl_rng_mt19937
gsl_rng_mt19937_1998
gsl_rng_mt19937_1999
gsl_rng_name
gsl_rng_print_state
gsl_rng_r250
gsl_rng_ran0
gsl_rng_ran1
gsl_rng_ran2
gsl_rng_ran3
gsl_rng_rand
gsl_rng_rand48
gsl_rng_random128_bsd
gsl_rng_random128_glibc2
gsl_rng_random128_libc5
gsl_rng_random256_bsd
gsl_rng_random256_glibc2
gsl_rng_random256_libc5
gsl_rng_random32_bsd
gsl_rng_random32_glibc2
gsl_rng_random32_libc5
gsl_rng_random64_bsd
gsl_rng_random64_glibc2
gsl_rng_random64_libc5
gsl_rng_random8_bsd
gsl_rng_random8_glibc2
gsl_rng_random8_libc5
gsl_rng_random_bsd
gsl_rng_random_glibc2
gsl_rng_random_libc5
gsl_rng_randu
gsl_rng_ranf
gsl_rng_ranlux
gsl_rng_ranlux389
gsl_rng_ranlxd1
gsl_rng_ranlxd2
gsl_rng_ranlxs0
gsl_rng_ranlxs1
gsl_rng_ranlxs2
gsl_rng_ranmar
gsl_rng_set
gsl_rng_size
gsl_rng_slatec
gsl_rng_state
gsl_rng_taus
gsl_rng_taus113
gsl_rng_taus2
gsl_rng_transputer
gsl_rng_tt800
gsl_rng_types_setup
gsl_rng_uni
gsl_rng_uni32
gsl_rng_uniform
gsl_rng_uniform_int
gsl_rng_uniform_pos
gsl_rng_vax
gsl_rng_waterman14
gsl_rng_zuf
gsl_root_fdfsolver_alloc
gsl_root_fdfsolver_free
gsl_root_fdfsolver_iterate
gsl_root_fdfsolver_name
gsl_root_fdfsolver_newton
gsl_root_fdfsolver_root
gsl_root_fdfsolver_secant
gsl_root_fdfsolver_set
gsl_root_fdfsolver_steffenson
gsl_root_fsolver_alloc
gsl_root_fsolver_bisection
gsl_root_fsolver_brent
gsl_root_fsolver_falsepos
gsl_root_fsolver_free
gsl_root_fsolver_iterate
gsl_root_fsolver_name
gsl_root_fsolver_root
gsl_root_fsolver_set
gsl_root_fsolver_x_lower
gsl_root_fsolver_x_upper
gsl_root_test_delta
gsl_root_test_interval
gsl_root_test_residual
gsl_rstat_add
gsl_rstat_alloc
gsl_rstat_free
gsl_rstat_kurtosis
gsl_rstat_max
gsl_rstat_mean
gsl_rstat_median
gsl_rstat_min
gsl_rstat_n
gsl_rstat_quantile_add
gsl_rstat_quantile_alloc
gsl_rstat_quantile_free
gsl_rstat_quantile_get
gsl_rstat_reset
gsl_rstat_sd
gsl_rstat_sd_mean
gsl_rstat_skew
gsl_rstat_variance
gsl_schur_gen_eigvals
gsl_schur_solve_equation
gsl_schur_solve_equation_z
gsl_set_error_handler
gsl_set_error_handler_off
gsl_set_stream
gsl_set_stream_handler
gsl_sf_Chi
gsl_sf_Chi_e
gsl_sf_Ci
gsl_sf_Ci_e
gsl_sf_Shi
gsl_sf_Shi_e
gsl_sf_Si
gsl_sf_Si_e
gsl_sf_airy_Ai
gsl_sf_airy_Ai_deriv
gsl_sf_airy_Ai_deriv_e
gsl_sf_airy_Ai_deriv_scaled
gsl_sf_airy_Ai_deriv_scaled_e
gsl_sf_airy_Ai_e
gsl_sf_airy_Ai_scaled
gsl_sf_airy_Ai_scaled_e
gsl_sf_airy_Bi
gsl_sf_airy_Bi_deriv
gsl_sf_airy_Bi_deriv_e
gsl_sf_airy_Bi_deriv_scaled
gsl_sf_airy_Bi_deriv_scaled_e
gsl_sf_airy_Bi_e
gsl_sf_airy_Bi_scaled
gsl_sf_airy_Bi_scaled_e
gsl_sf_airy_zero_Ai
gsl_sf_airy_zero_Ai_deriv
gsl_sf_airy_zero_Ai_deriv_e
gsl_sf_airy_zero_Ai_e
gsl_sf_airy_zero_Bi
gsl_sf_airy_zero_Bi_deriv
gsl_sf_airy_zero_Bi_deriv_e
gsl_sf_airy_zero_Bi_e
gsl_sf_angle_restrict_pos
gsl_sf_angle_restrict_pos_e
gsl_sf_angle_restrict_pos_err_e
gsl_sf_angle_restrict_symm
gsl_sf_angle_restrict_symm_e
gsl_sf_angle_restrict_symm_err_e
gsl_sf_atanint
gsl_sf_atanint_e
gsl_sf_bessel_I0
gsl_sf_bessel_I0_e
gsl_sf_bessel_I0_scaled
gsl_sf_bessel_I0_scaled_e
gsl_sf_bessel_I1
gsl_sf_bessel_I1_e
gsl_sf_bessel_I1_scaled
gsl_sf_bessel_I1_scaled_e
gsl_sf_bessel_IJ_taylor_e
gsl_sf_bessel_I_CF1_ser
gsl_sf_bessel_In
gsl_sf_bessel_In_array
gsl_sf_bessel_In_e
gsl_sf_bessel_In_scaled
gsl_sf_bessel_In_scaled_array
gsl_sf_bessel_In_scaled_e
gsl_sf_bessel_Inu
gsl_sf_bessel_Inu_e
gsl_sf_bessel_Inu_scaled
gsl_sf_bessel_Inu_scaled_asymp_unif_e
gsl_sf_bessel_Inu_scaled_asympx_e
gsl_sf_bessel_Inu_scaled_e
gsl_sf_bessel_J0
gsl_sf_bessel_J0_e
gsl_sf_bessel_J1
gsl_sf_bessel_J1_e
gsl_sf_bessel_JY_mu_restricted
gsl_sf_bessel_JY_steed_CF2
gsl_sf_bessel_J_CF1
gsl_sf_bessel_Jn
gsl_sf_bessel_Jn_array
gsl_sf_bessel_Jn_e
gsl_sf_bessel_Jnu
gsl_sf_bessel_Jnu_asymp_Olver_e
gsl_sf_bessel_Jnu_asympx_e
gsl_sf_bessel_Jnu_e
gsl_sf_bessel_K0
gsl_sf_bessel_K0_e
gsl_sf_bessel_K0_scaled
gsl_sf_bessel_K0_scaled_e
gsl_sf_bessel_K1
gsl_sf_bessel_K1_e
gsl_sf_bessel_K1_scaled
gsl_sf_bessel_K1_scaled_e
gsl_sf_bessel_K_scaled_steed_temme_CF2
gsl_sf_bessel_K_scaled_temme
gsl_sf_bessel_Kn
gsl_sf_bessel_Kn_array
gsl_sf_bessel_Kn_e
gsl_sf_bessel_Kn_scaled
gsl_sf_bessel_Kn_scaled_array
gsl_sf_bessel_Kn_scaled_e
gsl_sf_bessel_Knu
gsl_sf_bessel_Knu_e
gsl_sf_bessel_Knu_scaled
gsl_sf_bessel_Knu_scaled_asymp_unif_e
gsl_sf_bessel_Knu_scaled_asympx_e
gsl_sf_bessel_Knu_scaled_e
gsl_sf_bessel_Knu_scaled_e10_e
gsl_sf_bessel_Olver_zofmzeta
gsl_sf_bessel_Y0
gsl_sf_bessel_Y0_e
gsl_sf_bessel_Y1
gsl_sf_bessel_Y1_e
gsl_sf_bessel_Y_temme
gsl_sf_bessel_Yn
gsl_sf_bessel_Yn_array
gsl_sf_bessel_Yn_e
gsl_sf_bessel_Ynu
gsl_sf_bessel_Ynu_asymp_Olver_e
gsl_sf_bessel_Ynu_asympx_e
gsl_sf_bessel_Ynu_e
gsl_sf_bessel_asymp_Mnu_e
gsl_sf_bessel_asymp_thetanu_corr_e
gsl_sf_bessel_cos_pi4_e
gsl_sf_bessel_i0_scaled
gsl_sf_bessel_i0_scaled_e
gsl_sf_bessel_i1_scaled
gsl_sf_bessel_i1_scaled_e
gsl_sf_bessel_i2_scaled
gsl_sf_bessel_i2_scaled_e
gsl_sf_bessel_il_scaled
gsl_sf_bessel_il_scaled_array
gsl_sf_bessel_il_scaled_e
gsl_sf_bessel_j0
gsl_sf_bessel_j0_e
gsl_sf_bessel_j1
gsl_sf_bessel_j1_e
gsl_sf_bessel_j2
gsl_sf_bessel_j2_e
gsl_sf_bessel_jl
gsl_sf_bessel_jl_array
gsl_sf_bessel_jl_e
gsl_sf_bessel_jl_steed_array
gsl_sf_bessel_k0_scaled
gsl_sf_bessel_k0_scaled_e
gsl_sf_bessel_k1_scaled
gsl_sf_bessel_k1_scaled_e
gsl_sf_bessel_k2_scaled
gsl_sf_bessel_k2_scaled_e
gsl_sf_bessel_kl_scaled
gsl_sf_bessel_kl_scaled_array
gsl_sf_bessel_kl_scaled_e
gsl_sf_bessel_lnKnu
gsl_sf_bessel_lnKnu_e
gsl_sf_bessel_sequence_Jnu_e
gsl_sf_bessel_sin_pi4_e
gsl_sf_bessel_y0
gsl_sf_bessel_y0_e
gsl_sf_bessel_y1
gsl_sf_bessel_y1_e
gsl_sf_bessel_y2
gsl_sf_bessel_y2_e
gsl_sf_bessel_yl
gsl_sf_bessel_yl_array
gsl_sf_bessel_yl_e
gsl_sf_bessel_zero_J0
gsl_sf_bessel_zero_J0_e
gsl_sf_bessel_zero_J1
gsl_sf_bessel_zero_J1_e
gsl_sf_bessel_zero_Jnu
gsl_sf_bessel_zero_Jnu_e
gsl_sf_beta
gsl_sf_beta_e
gsl_sf_beta_inc
gsl_sf_beta_inc_e
gsl_sf_choose
gsl_sf_choose_e
gsl_sf_clausen
gsl_sf_clausen_e
gsl_sf_complex_cos_e
gsl_sf_complex_dilog_e
gsl_sf_complex_dilog_xy_e
gsl_sf_complex_log_e
gsl_sf_complex_logsin_e
gsl_sf_complex_psi_e
gsl_sf_complex_sin_e
gsl_sf_complex_spence_xy_e
gsl_sf_conicalP_0
gsl_sf_conicalP_0_e
gsl_sf_conicalP_1
gsl_sf_conicalP_1_e
gsl_sf_conicalP_cyl_reg
gsl_sf_conicalP_cyl_reg_e
gsl_sf_conicalP_half
gsl_sf_conicalP_half_e
gsl_sf_conicalP_large_x_e
gsl_sf_conicalP_mhalf
gsl_sf_conicalP_mhalf_e
gsl_sf_conicalP_sph_reg
gsl_sf_conicalP_sph_reg_e
gsl_sf_conicalP_xgt1_neg_mu_largetau_e
gsl_sf_conicalP_xlt1_large_neg_mu_e
gsl_sf_conicalP_xlt1_neg_mu_largetau_e
gsl_sf_cos
gsl_sf_cos_e
gsl_sf_cos_err_e
gsl_sf_coulomb_CL_array
gsl_sf_coulomb_CL_e
gsl_sf_coulomb_wave_FG_array
gsl_sf_coulomb_wave_FG_e
gsl_sf_coulomb_wave_FGp_array
gsl_sf_coulomb_wave_F_array
gsl_sf_coulomb_wave_sphF_array
gsl_sf_coupling_3j
gsl_sf_coupling_3j_e
gsl_sf_coupling_6j
gsl_sf_coupling_6j_INCORRECT
gsl_sf_coupling_6j_INCORRECT_e
gsl_sf_coupling_6j_e
gsl_sf_coupling_9j
gsl_sf_coupling_9j_e
gsl_sf_coupling_RacahW
gsl_sf_coupling_RacahW_e
gsl_sf_dawson
gsl_sf_dawson_e
gsl_sf_debye_1
gsl_sf_debye_1_e
gsl_sf_debye_2
gsl_sf_debye_2_e
gsl_sf_debye_3
gsl_sf_debye_3_e
gsl_sf_debye_4
gsl_sf_debye_4_e
gsl_sf_debye_5
gsl_sf_debye_5_e
gsl_sf_debye_6
gsl_sf_debye_6_e
gsl_sf_dilog
gsl_sf_dilog_e
gsl_sf_doublefact
gsl_sf_doublefact_e
gsl_sf_ellint_D
gsl_sf_ellint_D_e
gsl_sf_ellint_Dcomp
gsl_sf_ellint_Dcomp_e
gsl_sf_ellint_E
gsl_sf_ellint_E_e
gsl_sf_ellint_Ecomp
gsl_sf_ellint_Ecomp_e
gsl_sf_ellint_F
gsl_sf_ellint_F_e
gsl_sf_ellint_Kcomp
gsl_sf_ellint_Kcomp_e
gsl_sf_ellint_P
gsl_sf_ellint_P_e
gsl_sf_ellint_Pcomp
gsl_sf_ellint_Pcomp_e
gsl_sf_ellint_RC
gsl_sf_ellint_RC_e
gsl_sf_ellint_RD
gsl_sf_ellint_RD_e
gsl_sf_ellint_RF
gsl_sf_ellint_RF_e
gsl_sf_ellint_RJ
gsl_sf_ellint_RJ_e
gsl_sf_elljac_e
gsl_sf_erf
gsl_sf_erf_Q
gsl_sf_erf_Q_e
gsl_sf_erf_Z
gsl_sf_erf_Z_e
gsl_sf_erf_e
gsl_sf_erfc
gsl_sf_erfc_e
gsl_sf_eta
gsl_sf_eta_e
gsl_sf_eta_int
gsl_sf_eta_int_e
gsl_sf_exp
gsl_sf_exp_e
gsl_sf_exp_e10_e
gsl_sf_exp_err_e
gsl_sf_exp_err_e10_e
gsl_sf_exp_mult
gsl_sf_exp_mult_e
gsl_sf_exp_mult_e10_e
gsl_sf_exp_mult_err_e
gsl_sf_exp_mult_err_e10_e
gsl_sf_expint_3
gsl_sf_expint_3_e
gsl_sf_expint_E1
gsl_sf_expint_E1_e
gsl_sf_expint_E1_scaled
gsl_sf_expint_E1_scaled_e
gsl_sf_expint_E2
gsl_sf_expint_E2_e
gsl_sf_expint_E2_scaled
gsl_sf_expint_E2_scaled_e
gsl_sf_expint_Ei
gsl_sf_expint_Ei_e
gsl_sf_expint_Ei_scaled
gsl_sf_expint_Ei_scaled_e
gsl_sf_expint_En
gsl_sf_expint_En_e
gsl_sf_expint_En_scaled
gsl_sf_expint_En_scaled_e
gsl_sf_expm1
gsl_sf_expm1_e
gsl_sf_exprel
gsl_sf_exprel_2
gsl_sf_exprel_2_e
gsl_sf_exprel_e
gsl_sf_exprel_n
gsl_sf_exprel_n_CF_e
gsl_sf_exprel_n_e
gsl_sf_fact
gsl_sf_fact_e
gsl_sf_fermi_dirac_0
gsl_sf_fermi_dirac_0_e
gsl_sf_fermi_dirac_1
gsl_sf_fermi_dirac_1_e
gsl_sf_fermi_dirac_2
gsl_sf_fermi_dirac_2_e
gsl_sf_fermi_dirac_3half
gsl_sf_fermi_dirac_3half_e
gsl_sf_fermi_dirac_half
gsl_sf_fermi_dirac_half_e
gsl_sf_fermi_dirac_inc_0
gsl_sf_fermi_dirac_inc_0_e
gsl_sf_fermi_dirac_int
gsl_sf_fermi_dirac_int_e
gsl_sf_fermi_dirac_m1
gsl_sf_fermi_dirac_m1_e
gsl_sf_fermi_dirac_mhalf
gsl_sf_fermi_dirac_mhalf_e
gsl_sf_gamma
gsl_sf_gamma_e
gsl_sf_gamma_inc
gsl_sf_gamma_inc_P
gsl_sf_gamma_inc_P_e
gsl_sf_gamma_inc_Q
gsl_sf_gamma_inc_Q_e
gsl_sf_gamma_inc_e
gsl_sf_gammainv
gsl_sf_gammainv_e
gsl_sf_gammastar
gsl_sf_gammastar_e
gsl_sf_gegenpoly_1
gsl_sf_gegenpoly_1_e
gsl_sf_gegenpoly_2
gsl_sf_gegenpoly_2_e
gsl_sf_gegenpoly_3
gsl_sf_gegenpoly_3_e
gsl_sf_gegenpoly_array
gsl_sf_gegenpoly_n
gsl_sf_gegenpoly_n_e
gsl_sf_hazard
gsl_sf_hazard_e
gsl_sf_hydrogenicR
gsl_sf_hydrogenicR_1
gsl_sf_hydrogenicR_1_e
gsl_sf_hydrogenicR_e
gsl_sf_hyperg_0F1
gsl_sf_hyperg_0F1_e
gsl_sf_hyperg_1F1
gsl_sf_hyperg_1F1_e
gsl_sf_hyperg_1F1_int
gsl_sf_hyperg_1F1_int_e
gsl_sf_hyperg_1F1_large_b_e
gsl_sf_hyperg_1F1_series_e
gsl_sf_hyperg_2F0
gsl_sf_hyperg_2F0_e
gsl_sf_hyperg_2F0_series_e
gsl_sf_hyperg_2F1
gsl_sf_hyperg_2F1_conj
gsl_sf_hyperg_2F1_conj_e
gsl_sf_hyperg_2F1_conj_renorm
gsl_sf_hyperg_2F1_conj_renorm_e
gsl_sf_hyperg_2F1_e
gsl_sf_hyperg_2F1_renorm
gsl_sf_hyperg_2F1_renorm_e
gsl_sf_hyperg_U
gsl_sf_hyperg_U_e
gsl_sf_hyperg_U_e10_e
gsl_sf_hyperg_U_int
gsl_sf_hyperg_U_int_e
gsl_sf_hyperg_U_int_e10_e
gsl_sf_hyperg_U_large_b_e
gsl_sf_hypot
gsl_sf_hypot_e
gsl_sf_hzeta
gsl_sf_hzeta_e
gsl_sf_laguerre_1
gsl_sf_laguerre_1_e
gsl_sf_laguerre_2
gsl_sf_laguerre_2_e
gsl_sf_laguerre_3
gsl_sf_laguerre_3_e
gsl_sf_laguerre_n
gsl_sf_laguerre_n_e
gsl_sf_lambert_W0
gsl_sf_lambert_W0_e
gsl_sf_lambert_Wm1
gsl_sf_lambert_Wm1_e
gsl_sf_legendre_H3d
gsl_sf_legendre_H3d_0
gsl_sf_legendre_H3d_0_e
gsl_sf_legendre_H3d_1
gsl_sf_legendre_H3d_1_e
gsl_sf_legendre_H3d_array
gsl_sf_legendre_H3d_e
gsl_sf_legendre_P1
gsl_sf_legendre_P1_e
gsl_sf_legendre_P2
gsl_sf_legendre_P2_e
gsl_sf_legendre_P3
gsl_sf_legendre_P3_e
gsl_sf_legendre_Pl
gsl_sf_legendre_Pl_array
gsl_sf_legendre_Pl_deriv_array
gsl_sf_legendre_Pl_e
gsl_sf_legendre_Plm
gsl_sf_legendre_Plm_e
gsl_sf_legendre_Q0
gsl_sf_legendre_Q0_e
gsl_sf_legendre_Q1
gsl_sf_legendre_Q1_e
gsl_sf_legendre_Ql
gsl_sf_legendre_Ql_e
gsl_sf_legendre_array
gsl_sf_legendre_array_e
gsl_sf_legendre_array_index
gsl_sf_legendre_array_n
gsl_sf_legendre_deriv2_alt_array
gsl_sf_legendre_deriv2_alt_array_e
gsl_sf_legendre_deriv2_array
gsl_sf_legendre_deriv2_array_e
gsl_sf_legendre_deriv_alt_array
gsl_sf_legendre_deriv_alt_array_e
gsl_sf_legendre_deriv_array
gsl_sf_legendre_deriv_array_e
gsl_sf_legendre_nlm
gsl_sf_legendre_sphPlm
gsl_sf_legendre_sphPlm_e
gsl_sf_lnbeta
gsl_sf_lnbeta_e
gsl_sf_lnbeta_sgn_e
gsl_sf_lnchoose
gsl_sf_lnchoose_e
gsl_sf_lncosh
gsl_sf_lncosh_e
gsl_sf_lndoublefact
gsl_sf_lndoublefact_e
gsl_sf_lnfact
gsl_sf_lnfact_e
gsl_sf_lngamma
gsl_sf_lngamma_complex_e
gsl_sf_lngamma_e
gsl_sf_lngamma_sgn_e
gsl_sf_lnpoch
gsl_sf_lnpoch_e
gsl_sf_lnpoch_sgn_e
gsl_sf_lnsinh
gsl_sf_lnsinh_e
gsl_sf_log
gsl_sf_log_1plusx
gsl_sf_log_1plusx_e
gsl_sf_log_1plusx_mx
gsl_sf_log_1plusx_mx_e
gsl_sf_log_abs
gsl_sf_log_abs_e
gsl_sf_log_e
gsl_sf_log_erfc
gsl_sf_log_erfc_e
gsl_sf_mathieu_Mc
gsl_sf_mathieu_Mc_array
gsl_sf_mathieu_Mc_e
gsl_sf_mathieu_Ms
gsl_sf_mathieu_Ms_array
gsl_sf_mathieu_Ms_e
gsl_sf_mathieu_a
gsl_sf_mathieu_a_array
gsl_sf_mathieu_a_coeff
gsl_sf_mathieu_a_e
gsl_sf_mathieu_alloc
gsl_sf_mathieu_b
gsl_sf_mathieu_b_array
gsl_sf_mathieu_b_coeff
gsl_sf_mathieu_b_e
gsl_sf_mathieu_ce
gsl_sf_mathieu_ce_array
gsl_sf_mathieu_ce_e
gsl_sf_mathieu_free
gsl_sf_mathieu_se
gsl_sf_mathieu_se_array
gsl_sf_mathieu_se_e
gsl_sf_multiply
gsl_sf_multiply_e
gsl_sf_multiply_err_e
gsl_sf_poch
gsl_sf_poch_e
gsl_sf_pochrel
gsl_sf_pochrel_e
gsl_sf_polar_to_rect
gsl_sf_pow_int
gsl_sf_pow_int_e
gsl_sf_psi
gsl_sf_psi_1
gsl_sf_psi_1_e
gsl_sf_psi_1_int
gsl_sf_psi_1_int_e
gsl_sf_psi_1piy
gsl_sf_psi_1piy_e
gsl_sf_psi_e
gsl_sf_psi_int
gsl_sf_psi_int_e
gsl_sf_psi_n
gsl_sf_psi_n_e
gsl_sf_rect_to_polar
gsl_sf_result_smash_e
gsl_sf_sin
gsl_sf_sin_e
gsl_sf_sin_err_e
gsl_sf_sinc
gsl_sf_sinc_e
gsl_sf_synchrotron_1
gsl_sf_synchrotron_1_e
gsl_sf_synchrotron_2
gsl_sf_synchrotron_2_e
gsl_sf_taylorcoeff
gsl_sf_taylorcoeff_e
gsl_sf_transport_2
gsl_sf_transport_2_e
gsl_sf_transport_3
gsl_sf_transport_3_e
gsl_sf_transport_4
gsl_sf_transport_4_e
gsl_sf_transport_5
gsl_sf_transport_5_e
gsl_sf_zeta
gsl_sf_zeta_e
gsl_sf_zeta_int
gsl_sf_zeta_int_e
gsl_sf_zetam1
gsl_sf_zetam1_e
gsl_sf_zetam1_int
gsl_sf_zetam1_int_e
gsl_siman_solve
gsl_siman_solve_many
gsl_sort
gsl_sort2
gsl_sort2_char
gsl_sort2_float
gsl_sort2_int
gsl_sort2_long
gsl_sort2_long_double
gsl_sort2_short
gsl_sort2_uchar
gsl_sort2_uint
gsl_sort2_ulong
gsl_sort2_ushort
gsl_sort_char
gsl_sort_char_index
gsl_sort_char_largest
gsl_sort_char_largest_index
gsl_sort_char_smallest
gsl_sort_char_smallest_index
gsl_sort_float
gsl_sort_float_index
gsl_sort_float_largest
gsl_sort_float_largest_index
gsl_sort_float_smallest
gsl_sort_float_smallest_index
gsl_sort_index
gsl_sort_int
gsl_sort_int_index
gsl_sort_int_largest
gsl_sort_int_largest_index
gsl_sort_int_smallest
gsl_sort_int_smallest_index
gsl_sort_largest
gsl_sort_largest_index
gsl_sort_long
gsl_sort_long_double
gsl_sort_long_double_index
gsl_sort_long_double_largest
gsl_sort_long_double_largest_index
gsl_sort_long_double_smallest
gsl_sort_long_double_smallest_index
gsl_sort_long_index
gsl_sort_long_largest
gsl_sort_long_largest_index
gsl_sort_long_smallest
gsl_sort_long_smallest_index
gsl_sort_short
gsl_sort_short_index
gsl_sort_short_largest
gsl_sort_short_largest_index
gsl_sort_short_smallest
gsl_sort_short_smallest_index
gsl_sort_smallest
gsl_sort_smallest_index
gsl_sort_uchar
gsl_sort_uchar_index
gsl_sort_uchar_largest
gsl_sort_uchar_largest_index
gsl_sort_uchar_smallest
gsl_sort_uchar_smallest_index
gsl_sort_uint
gsl_sort_uint_index
gsl_sort_uint_largest
gsl_sort_uint_largest_index
gsl_sort_uint_smallest
gsl_sort_uint_smallest_index
gsl_sort_ulong
gsl_sort_ulong_index
gsl_sort_ulong_largest
gsl_sort_ulong_largest_index
gsl_sort_ulong_smallest
gsl_sort_ulong_smallest_index
gsl_sort_ushort
gsl_sort_ushort_index
gsl_sort_ushort_largest
gsl_sort_ushort_largest_index
gsl_sort_ushort_smallest
gsl_sort_ushort_smallest_index
gsl_sort_vector
gsl_sort_vector2
gsl_sort_vector2_char
gsl_sort_vector2_float
gsl_sort_vector2_int
gsl_sort_vector2_long
gsl_sort_vector2_long_double
gsl_sort_vector2_short
gsl_sort_vector2_uchar
gsl_sort_vector2_uint
gsl_sort_vector2_ulong
gsl_sort_vector2_ushort
gsl_sort_vector_char
gsl_sort_vector_char_index
gsl_sort_vector_char_largest
gsl_sort_vector_char_largest_index
gsl_sort_vector_char_smallest
gsl_sort_vector_char_smallest_index
gsl_sort_vector_float
gsl_sort_vector_float_index
gsl_sort_vector_float_largest
gsl_sort_vector_float_largest_index
gsl_sort_vector_float_smallest
gsl_sort_vector_float_smallest_index
gsl_sort_vector_index
gsl_sort_vector_int
gsl_sort_vector_int_index
gsl_sort_vector_int_largest
gsl_sort_vector_int_largest_index
gsl_sort_vector_int_smallest
gsl_sort_vector_int_smallest_index
gsl_sort_vector_largest
gsl_sort_vector_largest_index
gsl_sort_vector_long
gsl_sort_vector_long_double
gsl_sort_vector_long_double_index
gsl_sort_vector_long_double_largest
gsl_sort_vector_long_double_largest_index
gsl_sort_vector_long_double_smallest
gsl_sort_vector_long_double_smallest_index
gsl_sort_vector_long_index
gsl_sort_vector_long_largest
gsl_sort_vector_long_largest_index
gsl_sort_vector_long_smallest
gsl_sort_vector_long_smallest_index
gsl_sort_vector_short
gsl_sort_vector_short_index
gsl_sort_vector_short_largest
gsl_sort_vector_short_largest_index
gsl_sort_vector_short_smallest
gsl_sort_vector_short_smallest_index
gsl_sort_vector_smallest
gsl_sort_vector_smallest_index
gsl_sort_vector_uchar
gsl_sort_vector_uchar_index
gsl_sort_vector_uchar_largest
gsl_sort_vector_uchar_largest_index
gsl_sort_vector_uchar_smallest
gsl_sort_vector_uchar_smallest_index
gsl_sort_vector_uint
gsl_sort_vector_uint_index
gsl_sort_vector_uint_largest
gsl_sort_vector_uint_largest_index
gsl_sort_vector_uint_smallest
gsl_sort_vector_uint_smallest_index
gsl_sort_vector_ulong
gsl_sort_vector_ulong_index
gsl_sort_vector_ulong_largest
gsl_sort_vector_ulong_largest_index
gsl_sort_vector_ulong_smallest
gsl_sort_vector_ulong_smallest_index
gsl_sort_vector_ushort
gsl_sort_vector_ushort_index
gsl_sort_vector_ushort_largest
gsl_sort_vector_ushort_largest_index
gsl_sort_vector_ushort_smallest
gsl_sort_vector_ushort_smallest_index
gsl_spblas_dgemm
gsl_spblas_dgemv
gsl_spblas_scatter
gsl_splinalg_itersolve_alloc
gsl_splinalg_itersolve_free
gsl_splinalg_itersolve_gmres
gsl_splinalg_itersolve_iterate
gsl_splinalg_itersolve_name
gsl_splinalg_itersolve_normr
gsl_spline2d_alloc
gsl_spline2d_eval
gsl_spline2d_eval_deriv_x
gsl_spline2d_eval_deriv_x_e
gsl_spline2d_eval_deriv_xx
gsl_spline2d_eval_deriv_xx_e
gsl_spline2d_eval_deriv_xy
gsl_spline2d_eval_deriv_xy_e
gsl_spline2d_eval_deriv_y
gsl_spline2d_eval_deriv_y_e
gsl_spline2d_eval_deriv_yy
gsl_spline2d_eval_deriv_yy_e
gsl_spline2d_eval_e
gsl_spline2d_free
gsl_spline2d_get
gsl_spline2d_init
gsl_spline2d_min_size
gsl_spline2d_name
gsl_spline2d_set
gsl_spline_alloc
gsl_spline_eval
gsl_spline_eval_deriv
gsl_spline_eval_deriv2
gsl_spline_eval_deriv2_e
gsl_spline_eval_deriv_e
gsl_spline_eval_e
gsl_spline_eval_integ
gsl_spline_eval_integ_e
gsl_spline_free
gsl_spline_init
gsl_spline_min_size
gsl_spline_name
gsl_spmatrix_add
gsl_spmatrix_alloc
gsl_spmatrix_alloc_nzmax
gsl_spmatrix_compare_idx
gsl_spmatrix_compcol
gsl_spmatrix_cumsum
gsl_spmatrix_d2sp
gsl_spmatrix_equal
gsl_spmatrix_fprintf
gsl_spmatrix_free
gsl_spmatrix_get
gsl_spmatrix_memcpy
gsl_spmatrix_minmax
gsl_spmatrix_nnz
gsl_spmatrix_realloc
gsl_spmatrix_scale
gsl_spmatrix_set
gsl_spmatrix_set_zero
gsl_spmatrix_sp2d
gsl_spmatrix_transpose_memcpy
gsl_stats_absdev
gsl_stats_absdev_m
gsl_stats_char_absdev
gsl_stats_char_absdev_m
gsl_stats_char_correlation
gsl_stats_char_covariance
gsl_stats_char_covariance_m
gsl_stats_char_kurtosis
gsl_stats_char_kurtosis_m_sd
gsl_stats_char_lag1_autocorrelation
gsl_stats_char_lag1_autocorrelation_m
gsl_stats_char_max
gsl_stats_char_max_index
gsl_stats_char_mean
gsl_stats_char_median_from_sorted_data
gsl_stats_char_min
gsl_stats_char_min_index
gsl_stats_char_minmax
gsl_stats_char_minmax_index
gsl_stats_char_pvariance
gsl_stats_char_quantile_from_sorted_data
gsl_stats_char_sd
gsl_stats_char_sd_m
gsl_stats_char_sd_with_fixed_mean
gsl_stats_char_skew
gsl_stats_char_skew_m_sd
gsl_stats_char_spearman
gsl_stats_char_tss
gsl_stats_char_tss_m
gsl_stats_char_ttest
gsl_stats_char_variance
gsl_stats_char_variance_m
gsl_stats_char_variance_with_fixed_mean
gsl_stats_correlation
gsl_stats_covariance
gsl_stats_covariance_m
gsl_stats_float_absdev
gsl_stats_float_absdev_m
gsl_stats_float_correlation
gsl_stats_float_covariance
gsl_stats_float_covariance_m
gsl_stats_float_kurtosis
gsl_stats_float_kurtosis_m_sd
gsl_stats_float_lag1_autocorrelation
gsl_stats_float_lag1_autocorrelation_m
gsl_stats_float_max
gsl_stats_float_max_index
gsl_stats_float_mean
gsl_stats_float_median_from_sorted_data
gsl_stats_float_min
gsl_stats_float_min_index
gsl_stats_float_minmax
gsl_stats_float_minmax_index
gsl_stats_float_pvariance
gsl_stats_float_quantile_from_sorted_data
gsl_stats_float_sd
gsl_stats_float_sd_m
gsl_stats_float_sd_with_fixed_mean
gsl_stats_float_skew
gsl_stats_float_skew_m_sd
gsl_stats_float_spearman
gsl_stats_float_tss
gsl_stats_float_tss_m
gsl_stats_float_ttest
gsl_stats_float_variance
gsl_stats_float_variance_m
gsl_stats_float_variance_with_fixed_mean
gsl_stats_float_wabsdev
gsl_stats_float_wabsdev_m
gsl_stats_float_wkurtosis
gsl_stats_float_wkurtosis_m_sd
gsl_stats_float_wmean
gsl_stats_float_wsd
gsl_stats_float_wsd_m
gsl_stats_float_wsd_with_fixed_mean
gsl_stats_float_wskew
gsl_stats_float_wskew_m_sd
gsl_stats_float_wtss
gsl_stats_float_wtss_m
gsl_stats_float_wvariance
gsl_stats_float_wvariance_m
gsl_stats_float_wvariance_with_fixed_mean
gsl_stats_int_absdev
gsl_stats_int_absdev_m
gsl_stats_int_correlation
gsl_stats_int_covariance
gsl_stats_int_covariance_m
gsl_stats_int_kurtosis
gsl_stats_int_kurtosis_m_sd
gsl_stats_int_lag1_autocorrelation
gsl_stats_int_lag1_autocorrelation_m
gsl_stats_int_max
gsl_stats_int_max_index
gsl_stats_int_mean
gsl_stats_int_median_from_sorted_data
gsl_stats_int_min
gsl_stats_int_min_index
gsl_stats_int_minmax
gsl_stats_int_minmax_index
gsl_stats_int_pvariance
gsl_stats_int_quantile_from_sorted_data
gsl_stats_int_sd
gsl_stats_int_sd_m
gsl_stats_int_sd_with_fixed_mean
gsl_stats_int_skew
gsl_stats_int_skew_m_sd
gsl_stats_int_spearman
gsl_stats_int_tss
gsl_stats_int_tss_m
gsl_stats_int_ttest
gsl_stats_int_variance
gsl_stats_int_variance_m
gsl_stats_int_variance_with_fixed_mean
gsl_stats_kurtosis
gsl_stats_kurtosis_m_sd
gsl_stats_lag1_autocorrelation
gsl_stats_lag1_autocorrelation_m
gsl_stats_long_absdev
gsl_stats_long_absdev_m
gsl_stats_long_correlation
gsl_stats_long_covariance
gsl_stats_long_covariance_m
gsl_stats_long_double_absdev
gsl_stats_long_double_absdev_m
gsl_stats_long_double_correlation
gsl_stats_long_double_covariance
gsl_stats_long_double_covariance_m
gsl_stats_long_double_kurtosis
gsl_stats_long_double_kurtosis_m_sd
gsl_stats_long_double_lag1_autocorrelation
gsl_stats_long_double_lag1_autocorrelation_m
gsl_stats_long_double_max
gsl_stats_long_double_max_index
gsl_stats_long_double_mean
gsl_stats_long_double_median_from_sorted_data
gsl_stats_long_double_min
gsl_stats_long_double_min_index
gsl_stats_long_double_minmax
gsl_stats_long_double_minmax_index
gsl_stats_long_double_pvariance
gsl_stats_long_double_quantile_from_sorted_data
gsl_stats_long_double_sd
gsl_stats_long_double_sd_m
gsl_stats_long_double_sd_with_fixed_mean
gsl_stats_long_double_skew
gsl_stats_long_double_skew_m_sd
gsl_stats_long_double_spearman
gsl_stats_long_double_tss
gsl_stats_long_double_tss_m
gsl_stats_long_double_ttest
gsl_stats_long_double_variance
gsl_stats_long_double_variance_m
gsl_stats_long_double_variance_with_fixed_mean
gsl_stats_long_double_wabsdev
gsl_stats_long_double_wabsdev_m
gsl_stats_long_double_wkurtosis
gsl_stats_long_double_wkurtosis_m_sd
gsl_stats_long_double_wmean
gsl_stats_long_double_wsd
gsl_stats_long_double_wsd_m
gsl_stats_long_double_wsd_with_fixed_mean
gsl_stats_long_double_wskew
gsl_stats_long_double_wskew_m_sd
gsl_stats_long_double_wtss
gsl_stats_long_double_wtss_m
gsl_stats_long_double_wvariance
gsl_stats_long_double_wvariance_m
gsl_stats_long_double_wvariance_with_fixed_mean
gsl_stats_long_kurtosis
gsl_stats_long_kurtosis_m_sd
gsl_stats_long_lag1_autocorrelation
gsl_stats_long_lag1_autocorrelation_m
gsl_stats_long_max
gsl_stats_long_max_index
gsl_stats_long_mean
gsl_stats_long_median_from_sorted_data
gsl_stats_long_min
gsl_stats_long_min_index
gsl_stats_long_minmax
gsl_stats_long_minmax_index
gsl_stats_long_pvariance
gsl_stats_long_quantile_from_sorted_data
gsl_stats_long_sd
gsl_stats_long_sd_m
gsl_stats_long_sd_with_fixed_mean
gsl_stats_long_skew
gsl_stats_long_skew_m_sd
gsl_stats_long_spearman
gsl_stats_long_tss
gsl_stats_long_tss_m
gsl_stats_long_ttest
gsl_stats_long_variance
gsl_stats_long_variance_m
gsl_stats_long_variance_with_fixed_mean
gsl_stats_max
gsl_stats_max_index
gsl_stats_mean
gsl_stats_median_from_sorted_data
gsl_stats_min
gsl_stats_min_index
gsl_stats_minmax
gsl_stats_minmax_index
gsl_stats_pvariance
gsl_stats_quantile_from_sorted_data
gsl_stats_sd
gsl_stats_sd_m
gsl_stats_sd_with_fixed_mean
gsl_stats_short_absdev
gsl_stats_short_absdev_m
gsl_stats_short_correlation
gsl_stats_short_covariance
gsl_stats_short_covariance_m
gsl_stats_short_kurtosis
gsl_stats_short_kurtosis_m_sd
gsl_stats_short_lag1_autocorrelation
gsl_stats_short_lag1_autocorrelation_m
gsl_stats_short_max
gsl_stats_short_max_index
gsl_stats_short_mean
gsl_stats_short_median_from_sorted_data
gsl_stats_short_min
gsl_stats_short_min_index
gsl_stats_short_minmax
gsl_stats_short_minmax_index
gsl_stats_short_pvariance
gsl_stats_short_quantile_from_sorted_data
gsl_stats_short_sd
gsl_stats_short_sd_m
gsl_stats_short_sd_with_fixed_mean
gsl_stats_short_skew
gsl_stats_short_skew_m_sd
gsl_stats_short_spearman
gsl_stats_short_tss
gsl_stats_short_tss_m
gsl_stats_short_ttest
gsl_stats_short_variance
gsl_stats_short_variance_m
gsl_stats_short_variance_with_fixed_mean
gsl_stats_skew
gsl_stats_skew_m_sd
gsl_stats_spearman
gsl_stats_tss
gsl_stats_tss_m
gsl_stats_ttest
gsl_stats_uchar_absdev
gsl_stats_uchar_absdev_m
gsl_stats_uchar_correlation
gsl_stats_uchar_covariance
gsl_stats_uchar_covariance_m
gsl_stats_uchar_kurtosis
gsl_stats_uchar_kurtosis_m_sd
gsl_stats_uchar_lag1_autocorrelation
gsl_stats_uchar_lag1_autocorrelation_m
gsl_stats_uchar_max
gsl_stats_uchar_max_index
gsl_stats_uchar_mean
gsl_stats_uchar_median_from_sorted_data
gsl_stats_uchar_min
gsl_stats_uchar_min_index
gsl_stats_uchar_minmax
gsl_stats_uchar_minmax_index
gsl_stats_uchar_pvariance
gsl_stats_uchar_quantile_from_sorted_data
gsl_stats_uchar_sd
gsl_stats_uchar_sd_m
gsl_stats_uchar_sd_with_fixed_mean
gsl_stats_uchar_skew
gsl_stats_uchar_skew_m_sd
gsl_stats_uchar_spearman
gsl_stats_uchar_tss
gsl_stats_uchar_tss_m
gsl_stats_uchar_ttest
gsl_stats_uchar_variance
gsl_stats_uchar_variance_m
gsl_stats_uchar_variance_with_fixed_mean
gsl_stats_uint_absdev
gsl_stats_uint_absdev_m
gsl_stats_uint_correlation
gsl_stats_uint_covariance
gsl_stats_uint_covariance_m
gsl_stats_uint_kurtosis
gsl_stats_uint_kurtosis_m_sd
gsl_stats_uint_lag1_autocorrelation
gsl_stats_uint_lag1_autocorrelation_m
gsl_stats_uint_max
gsl_stats_uint_max_index
gsl_stats_uint_mean
gsl_stats_uint_median_from_sorted_data
gsl_stats_uint_min
gsl_stats_uint_min_index
gsl_stats_uint_minmax
gsl_stats_uint_minmax_index
gsl_stats_uint_pvariance
gsl_stats_uint_quantile_from_sorted_data
gsl_stats_uint_sd
gsl_stats_uint_sd_m
gsl_stats_uint_sd_with_fixed_mean
gsl_stats_uint_skew
gsl_stats_uint_skew_m_sd
gsl_stats_uint_spearman
gsl_stats_uint_tss
gsl_stats_uint_tss_m
gsl_stats_uint_ttest
gsl_stats_uint_variance
gsl_stats_uint_variance_m
gsl_stats_uint_variance_with_fixed_mean
gsl_stats_ulong_absdev
gsl_stats_ulong_absdev_m
gsl_stats_ulong_correlation
gsl_stats_ulong_covariance
gsl_stats_ulong_covariance_m
gsl_stats_ulong_kurtosis
gsl_stats_ulong_kurtosis_m_sd
gsl_stats_ulong_lag1_autocorrelation
gsl_stats_ulong_lag1_autocorrelation_m
gsl_stats_ulong_max
gsl_stats_ulong_max_index
gsl_stats_ulong_mean
gsl_stats_ulong_median_from_sorted_data
gsl_stats_ulong_min
gsl_stats_ulong_min_index
gsl_stats_ulong_minmax
gsl_stats_ulong_minmax_index
gsl_stats_ulong_pvariance
gsl_stats_ulong_quantile_from_sorted_data
gsl_stats_ulong_sd
gsl_stats_ulong_sd_m
gsl_stats_ulong_sd_with_fixed_mean
gsl_stats_ulong_skew
gsl_stats_ulong_skew_m_sd
gsl_stats_ulong_spearman
gsl_stats_ulong_tss
gsl_stats_ulong_tss_m
gsl_stats_ulong_ttest
gsl_stats_ulong_variance
gsl_stats_ulong_variance_m
gsl_stats_ulong_variance_with_fixed_mean
gsl_stats_ushort_absdev
gsl_stats_ushort_absdev_m
gsl_stats_ushort_correlation
gsl_stats_ushort_covariance
gsl_stats_ushort_covariance_m
gsl_stats_ushort_kurtosis
gsl_stats_ushort_kurtosis_m_sd
gsl_stats_ushort_lag1_autocorrelation
gsl_stats_ushort_lag1_autocorrelation_m
gsl_stats_ushort_max
gsl_stats_ushort_max_index
gsl_stats_ushort_mean
gsl_stats_ushort_median_from_sorted_data
gsl_stats_ushort_min
gsl_stats_ushort_min_index
gsl_stats_ushort_minmax
gsl_stats_ushort_minmax_index
gsl_stats_ushort_pvariance
gsl_stats_ushort_quantile_from_sorted_data
gsl_stats_ushort_sd
gsl_stats_ushort_sd_m
gsl_stats_ushort_sd_with_fixed_mean
gsl_stats_ushort_skew
gsl_stats_ushort_skew_m_sd
gsl_stats_ushort_spearman
gsl_stats_ushort_tss
gsl_stats_ushort_tss_m
gsl_stats_ushort_ttest
gsl_stats_ushort_variance
gsl_stats_ushort_variance_m
gsl_stats_ushort_variance_with_fixed_mean
gsl_stats_variance
gsl_stats_variance_m
gsl_stats_variance_with_fixed_mean
gsl_stats_wabsdev
gsl_stats_wabsdev_m
gsl_stats_wkurtosis
gsl_stats_wkurtosis_m_sd
gsl_stats_wmean
gsl_stats_wsd
gsl_stats_wsd_m
gsl_stats_wsd_with_fixed_mean
gsl_stats_wskew
gsl_stats_wskew_m_sd
gsl_stats_wtss
gsl_stats_wtss_m
gsl_stats_wvariance
gsl_stats_wvariance_m
gsl_stats_wvariance_with_fixed_mean
gsl_stream
gsl_stream_handler
gsl_stream_printf
gsl_strerror
gsl_sum_levin_u_accel
gsl_sum_levin_u_alloc
gsl_sum_levin_u_free
gsl_sum_levin_u_minmax
gsl_sum_levin_u_step
gsl_sum_levin_utrunc_accel
gsl_sum_levin_utrunc_alloc
gsl_sum_levin_utrunc_free
gsl_sum_levin_utrunc_minmax
gsl_sum_levin_utrunc_step
gsl_test
gsl_test_abs
gsl_test_factor
gsl_test_int
gsl_test_rel
gsl_test_str
gsl_test_summary
gsl_test_verbose
gsl_utils_placeholder
gsl_vector_add
gsl_vector_add_constant
gsl_vector_alloc
gsl_vector_alloc_col_from_matrix
gsl_vector_alloc_from_block
gsl_vector_alloc_from_vector
gsl_vector_alloc_row_from_matrix
gsl_vector_calloc
gsl_vector_char_add
gsl_vector_char_add_constant
gsl_vector_char_alloc
gsl_vector_char_alloc_col_from_matrix
gsl_vector_char_alloc_from_block
gsl_vector_char_alloc_from_vector
gsl_vector_char_alloc_row_from_matrix
gsl_vector_char_calloc
gsl_vector_char_const_ptr
gsl_vector_char_const_subvector
gsl_vector_char_const_subvector_with_stride
gsl_vector_char_const_view_array
gsl_vector_char_const_view_array_with_stride
gsl_vector_char_div
gsl_vector_char_equal
gsl_vector_char_fprintf
gsl_vector_char_fread
gsl_vector_char_free
gsl_vector_char_fscanf
gsl_vector_char_fwrite
gsl_vector_char_get
gsl_vector_char_isneg
gsl_vector_char_isnonneg
gsl_vector_char_isnull
gsl_vector_char_ispos
gsl_vector_char_max
gsl_vector_char_max_index
gsl_vector_char_memcpy
gsl_vector_char_min
gsl_vector_char_min_index
gsl_vector_char_minmax
gsl_vector_char_minmax_index
gsl_vector_char_mul
gsl_vector_char_ptr
gsl_vector_char_reverse
gsl_vector_char_scale
gsl_vector_char_set
gsl_vector_char_set_all
gsl_vector_char_set_basis
gsl_vector_char_set_zero
gsl_vector_char_sub
gsl_vector_char_subvector
gsl_vector_char_subvector_with_stride
gsl_vector_char_swap
gsl_vector_char_swap_elements
gsl_vector_char_view_array
gsl_vector_char_view_array_with_stride
gsl_vector_complex_add
gsl_vector_complex_add_constant
gsl_vector_complex_alloc
gsl_vector_complex_alloc_col_from_matrix
gsl_vector_complex_alloc_from_block
gsl_vector_complex_alloc_from_vector
gsl_vector_complex_alloc_row_from_matrix
gsl_vector_complex_calloc
gsl_vector_complex_const_imag
gsl_vector_complex_const_ptr
gsl_vector_complex_const_real
gsl_vector_complex_const_subvector
gsl_vector_complex_const_subvector_with_stride
gsl_vector_complex_const_view_array
gsl_vector_complex_const_view_array_with_stride
gsl_vector_complex_div
gsl_vector_complex_equal
gsl_vector_complex_float_add
gsl_vector_complex_float_add_constant
gsl_vector_complex_float_alloc
gsl_vector_complex_float_alloc_col_from_matrix
gsl_vector_complex_float_alloc_from_block
gsl_vector_complex_float_alloc_from_vector
gsl_vector_complex_float_alloc_row_from_matrix
gsl_vector_complex_float_calloc
gsl_vector_complex_float_const_imag
gsl_vector_complex_float_const_ptr
gsl_vector_complex_float_const_real
gsl_vector_complex_float_const_subvector
gsl_vector_complex_float_const_subvector_with_stride
gsl_vector_complex_float_const_view_array
gsl_vector_complex_float_const_view_array_with_stride
gsl_vector_complex_float_div
gsl_vector_complex_float_equal
gsl_vector_complex_float_fprintf
gsl_vector_complex_float_fread
gsl_vector_complex_float_free
gsl_vector_complex_float_fscanf
gsl_vector_complex_float_fwrite
gsl_vector_complex_float_get
gsl_vector_complex_float_imag
gsl_vector_complex_float_isneg
gsl_vector_complex_float_isnonneg
gsl_vector_complex_float_isnull
gsl_vector_complex_float_ispos
gsl_vector_complex_float_memcpy
gsl_vector_complex_float_mul
gsl_vector_complex_float_ptr
gsl_vector_complex_float_real
gsl_vector_complex_float_reverse
gsl_vector_complex_float_scale
gsl_vector_complex_float_set
gsl_vector_complex_float_set_all
gsl_vector_complex_float_set_basis
gsl_vector_complex_float_set_zero
gsl_vector_complex_float_sub
gsl_vector_complex_float_subvector
gsl_vector_complex_float_subvector_with_stride
gsl_vector_complex_float_swap
gsl_vector_complex_float_swap_elements
gsl_vector_complex_float_view_array
gsl_vector_complex_float_view_array_with_stride
gsl_vector_complex_fprintf
gsl_vector_complex_fread
gsl_vector_complex_free
gsl_vector_complex_fscanf
gsl_vector_complex_fwrite
gsl_vector_complex_get
gsl_vector_complex_imag
gsl_vector_complex_isneg
gsl_vector_complex_isnonneg
gsl_vector_complex_isnull
gsl_vector_complex_ispos
gsl_vector_complex_long_double_add
gsl_vector_complex_long_double_add_constant
gsl_vector_complex_long_double_alloc
gsl_vector_complex_long_double_alloc_col_from_matrix
gsl_vector_complex_long_double_alloc_from_block
gsl_vector_complex_long_double_alloc_from_vector
gsl_vector_complex_long_double_alloc_row_from_matrix
gsl_vector_complex_long_double_calloc
gsl_vector_complex_long_double_const_imag
gsl_vector_complex_long_double_const_ptr
gsl_vector_complex_long_double_const_real
gsl_vector_complex_long_double_const_subvector
gsl_vector_complex_long_double_const_subvector_with_stride
gsl_vector_complex_long_double_const_view_array
gsl_vector_complex_long_double_const_view_array_with_stride
gsl_vector_complex_long_double_div
gsl_vector_complex_long_double_equal
gsl_vector_complex_long_double_fprintf
gsl_vector_complex_long_double_fread
gsl_vector_complex_long_double_free
gsl_vector_complex_long_double_fscanf
gsl_vector_complex_long_double_fwrite
gsl_vector_complex_long_double_get
gsl_vector_complex_long_double_imag
gsl_vector_complex_long_double_isneg
gsl_vector_complex_long_double_isnonneg
gsl_vector_complex_long_double_isnull
gsl_vector_complex_long_double_ispos
gsl_vector_complex_long_double_memcpy
gsl_vector_complex_long_double_mul
gsl_vector_complex_long_double_ptr
gsl_vector_complex_long_double_real
gsl_vector_complex_long_double_reverse
gsl_vector_complex_long_double_scale
gsl_vector_complex_long_double_set
gsl_vector_complex_long_double_set_all
gsl_vector_complex_long_double_set_basis
gsl_vector_complex_long_double_set_zero
gsl_vector_complex_long_double_sub
gsl_vector_complex_long_double_subvector
gsl_vector_complex_long_double_subvector_with_stride
gsl_vector_complex_long_double_swap
gsl_vector_complex_long_double_swap_elements
gsl_vector_complex_long_double_view_array
gsl_vector_complex_long_double_view_array_with_stride
gsl_vector_complex_memcpy
gsl_vector_complex_mul
gsl_vector_complex_ptr
gsl_vector_complex_real
gsl_vector_complex_reverse
gsl_vector_complex_scale
gsl_vector_complex_set
gsl_vector_complex_set_all
gsl_vector_complex_set_basis
gsl_vector_complex_set_zero
gsl_vector_complex_sub
gsl_vector_complex_subvector
gsl_vector_complex_subvector_with_stride
gsl_vector_complex_swap
gsl_vector_complex_swap_elements
gsl_vector_complex_view_array
gsl_vector_complex_view_array_with_stride
gsl_vector_const_ptr
gsl_vector_const_subvector
gsl_vector_const_subvector_with_stride
gsl_vector_const_view_array
gsl_vector_const_view_array_with_stride
gsl_vector_div
gsl_vector_equal
gsl_vector_float_add
gsl_vector_float_add_constant
gsl_vector_float_alloc
gsl_vector_float_alloc_col_from_matrix
gsl_vector_float_alloc_from_block
gsl_vector_float_alloc_from_vector
gsl_vector_float_alloc_row_from_matrix
gsl_vector_float_calloc
gsl_vector_float_const_ptr
gsl_vector_float_const_subvector
gsl_vector_float_const_subvector_with_stride
gsl_vector_float_const_view_array
gsl_vector_float_const_view_array_with_stride
gsl_vector_float_div
gsl_vector_float_equal
gsl_vector_float_fprintf
gsl_vector_float_fread
gsl_vector_float_free
gsl_vector_float_fscanf
gsl_vector_float_fwrite
gsl_vector_float_get
gsl_vector_float_isneg
gsl_vector_float_isnonneg
gsl_vector_float_isnull
gsl_vector_float_ispos
gsl_vector_float_max
gsl_vector_float_max_index
gsl_vector_float_memcpy
gsl_vector_float_min
gsl_vector_float_min_index
gsl_vector_float_minmax
gsl_vector_float_minmax_index
gsl_vector_float_mul
gsl_vector_float_ptr
gsl_vector_float_reverse
gsl_vector_float_scale
gsl_vector_float_set
gsl_vector_float_set_all
gsl_vector_float_set_basis
gsl_vector_float_set_zero
gsl_vector_float_sub
gsl_vector_float_subvector
gsl_vector_float_subvector_with_stride
gsl_vector_float_swap
gsl_vector_float_swap_elements
gsl_vector_float_view_array
gsl_vector_float_view_array_with_stride
gsl_vector_fprintf
gsl_vector_fread
gsl_vector_free
gsl_vector_fscanf
gsl_vector_fwrite
gsl_vector_get
gsl_vector_int_add
gsl_vector_int_add_constant
gsl_vector_int_alloc
gsl_vector_int_alloc_col_from_matrix
gsl_vector_int_alloc_from_block
gsl_vector_int_alloc_from_vector
gsl_vector_int_alloc_row_from_matrix
gsl_vector_int_calloc
gsl_vector_int_const_ptr
gsl_vector_int_const_subvector
gsl_vector_int_const_subvector_with_stride
gsl_vector_int_const_view_array
gsl_vector_int_const_view_array_with_stride
gsl_vector_int_div
gsl_vector_int_equal
gsl_vector_int_fprintf
gsl_vector_int_fread
gsl_vector_int_free
gsl_vector_int_fscanf
gsl_vector_int_fwrite
gsl_vector_int_get
gsl_vector_int_isneg
gsl_vector_int_isnonneg
gsl_vector_int_isnull
gsl_vector_int_ispos
gsl_vector_int_max
gsl_vector_int_max_index
gsl_vector_int_memcpy
gsl_vector_int_min
gsl_vector_int_min_index
gsl_vector_int_minmax
gsl_vector_int_minmax_index
gsl_vector_int_mul
gsl_vector_int_ptr
gsl_vector_int_reverse
gsl_vector_int_scale
gsl_vector_int_set
gsl_vector_int_set_all
gsl_vector_int_set_basis
gsl_vector_int_set_zero
gsl_vector_int_sub
gsl_vector_int_subvector
gsl_vector_int_subvector_with_stride
gsl_vector_int_swap
gsl_vector_int_swap_elements
gsl_vector_int_view_array
gsl_vector_int_view_array_with_stride
gsl_vector_isneg
gsl_vector_isnonneg
gsl_vector_isnull
gsl_vector_ispos
gsl_vector_long_add
gsl_vector_long_add_constant
gsl_vector_long_alloc
gsl_vector_long_alloc_col_from_matrix
gsl_vector_long_alloc_from_block
gsl_vector_long_alloc_from_vector
gsl_vector_long_alloc_row_from_matrix
gsl_vector_long_calloc
gsl_vector_long_const_ptr
gsl_vector_long_const_subvector
gsl_vector_long_const_subvector_with_stride
gsl_vector_long_const_view_array
gsl_vector_long_const_view_array_with_stride
gsl_vector_long_div
gsl_vector_long_double_add
gsl_vector_long_double_add_constant
gsl_vector_long_double_alloc
gsl_vector_long_double_alloc_col_from_matrix
gsl_vector_long_double_alloc_from_block
gsl_vector_long_double_alloc_from_vector
gsl_vector_long_double_alloc_row_from_matrix
gsl_vector_long_double_calloc
gsl_vector_long_double_const_ptr
gsl_vector_long_double_const_subvector
gsl_vector_long_double_const_subvector_with_stride
gsl_vector_long_double_const_view_array
gsl_vector_long_double_const_view_array_with_stride
gsl_vector_long_double_div
gsl_vector_long_double_equal
gsl_vector_long_double_fprintf
gsl_vector_long_double_fread
gsl_vector_long_double_free
gsl_vector_long_double_fscanf
gsl_vector_long_double_fwrite
gsl_vector_long_double_get
gsl_vector_long_double_isneg
gsl_vector_long_double_isnonneg
gsl_vector_long_double_isnull
gsl_vector_long_double_ispos
gsl_vector_long_double_max
gsl_vector_long_double_max_index
gsl_vector_long_double_memcpy
gsl_vector_long_double_min
gsl_vector_long_double_min_index
gsl_vector_long_double_minmax
gsl_vector_long_double_minmax_index
gsl_vector_long_double_mul
gsl_vector_long_double_ptr
gsl_vector_long_double_reverse
gsl_vector_long_double_scale
gsl_vector_long_double_set
gsl_vector_long_double_set_all
gsl_vector_long_double_set_basis
gsl_vector_long_double_set_zero
gsl_vector_long_double_sub
gsl_vector_long_double_subvector
gsl_vector_long_double_subvector_with_stride
gsl_vector_long_double_swap
gsl_vector_long_double_swap_elements
gsl_vector_long_double_view_array
gsl_vector_long_double_view_array_with_stride
gsl_vector_long_equal
gsl_vector_long_fprintf
gsl_vector_long_fread
gsl_vector_long_free
gsl_vector_long_fscanf
gsl_vector_long_fwrite
gsl_vector_long_get
gsl_vector_long_isneg
gsl_vector_long_isnonneg
gsl_vector_long_isnull
gsl_vector_long_ispos
gsl_vector_long_max
gsl_vector_long_max_index
gsl_vector_long_memcpy
gsl_vector_long_min
gsl_vector_long_min_index
gsl_vector_long_minmax
gsl_vector_long_minmax_index
gsl_vector_long_mul
gsl_vector_long_ptr
gsl_vector_long_reverse
gsl_vector_long_scale
gsl_vector_long_set
gsl_vector_long_set_all
gsl_vector_long_set_basis
gsl_vector_long_set_zero
gsl_vector_long_sub
gsl_vector_long_subvector
gsl_vector_long_subvector_with_stride
gsl_vector_long_swap
gsl_vector_long_swap_elements
gsl_vector_long_view_array
gsl_vector_long_view_array_with_stride
gsl_vector_max
gsl_vector_max_index
gsl_vector_memcpy
gsl_vector_min
gsl_vector_min_index
gsl_vector_minmax
gsl_vector_minmax_index
gsl_vector_mul
gsl_vector_ptr
gsl_vector_reverse
gsl_vector_scale
gsl_vector_set
gsl_vector_set_all
gsl_vector_set_basis
gsl_vector_set_zero
gsl_vector_short_add
gsl_vector_short_add_constant
gsl_vector_short_alloc
gsl_vector_short_alloc_col_from_matrix
gsl_vector_short_alloc_from_block
gsl_vector_short_alloc_from_vector
gsl_vector_short_alloc_row_from_matrix
gsl_vector_short_calloc
gsl_vector_short_const_ptr
gsl_vector_short_const_subvector
gsl_vector_short_const_subvector_with_stride
gsl_vector_short_const_view_array
gsl_vector_short_const_view_array_with_stride
gsl_vector_short_div
gsl_vector_short_equal
gsl_vector_short_fprintf
gsl_vector_short_fread
gsl_vector_short_free
gsl_vector_short_fscanf
gsl_vector_short_fwrite
gsl_vector_short_get
gsl_vector_short_isneg
gsl_vector_short_isnonneg
gsl_vector_short_isnull
gsl_vector_short_ispos
gsl_vector_short_max
gsl_vector_short_max_index
gsl_vector_short_memcpy
gsl_vector_short_min
gsl_vector_short_min_index
gsl_vector_short_minmax
gsl_vector_short_minmax_index
gsl_vector_short_mul
gsl_vector_short_ptr
gsl_vector_short_reverse
gsl_vector_short_scale
gsl_vector_short_set
gsl_vector_short_set_all
gsl_vector_short_set_basis
gsl_vector_short_set_zero
gsl_vector_short_sub
gsl_vector_short_subvector
gsl_vector_short_subvector_with_stride
gsl_vector_short_swap
gsl_vector_short_swap_elements
gsl_vector_short_view_array
gsl_vector_short_view_array_with_stride
gsl_vector_sub
gsl_vector_subvector
gsl_vector_subvector_with_stride
gsl_vector_swap
gsl_vector_swap_elements
gsl_vector_uchar_add
gsl_vector_uchar_add_constant
gsl_vector_uchar_alloc
gsl_vector_uchar_alloc_col_from_matrix
gsl_vector_uchar_alloc_from_block
gsl_vector_uchar_alloc_from_vector
gsl_vector_uchar_alloc_row_from_matrix
gsl_vector_uchar_calloc
gsl_vector_uchar_const_ptr
gsl_vector_uchar_const_subvector
gsl_vector_uchar_const_subvector_with_stride
gsl_vector_uchar_const_view_array
gsl_vector_uchar_const_view_array_with_stride
gsl_vector_uchar_div
gsl_vector_uchar_equal
gsl_vector_uchar_fprintf
gsl_vector_uchar_fread
gsl_vector_uchar_free
gsl_vector_uchar_fscanf
gsl_vector_uchar_fwrite
gsl_vector_uchar_get
gsl_vector_uchar_isneg
gsl_vector_uchar_isnonneg
gsl_vector_uchar_isnull
gsl_vector_uchar_ispos
gsl_vector_uchar_max
gsl_vector_uchar_max_index
gsl_vector_uchar_memcpy
gsl_vector_uchar_min
gsl_vector_uchar_min_index
gsl_vector_uchar_minmax
gsl_vector_uchar_minmax_index
gsl_vector_uchar_mul
gsl_vector_uchar_ptr
gsl_vector_uchar_reverse
gsl_vector_uchar_scale
gsl_vector_uchar_set
gsl_vector_uchar_set_all
gsl_vector_uchar_set_basis
gsl_vector_uchar_set_zero
gsl_vector_uchar_sub
gsl_vector_uchar_subvector
gsl_vector_uchar_subvector_with_stride
gsl_vector_uchar_swap
gsl_vector_uchar_swap_elements
gsl_vector_uchar_view_array
gsl_vector_uchar_view_array_with_stride
gsl_vector_uint_add
gsl_vector_uint_add_constant
gsl_vector_uint_alloc
gsl_vector_uint_alloc_col_from_matrix
gsl_vector_uint_alloc_from_block
gsl_vector_uint_alloc_from_vector
gsl_vector_uint_alloc_row_from_matrix
gsl_vector_uint_calloc
gsl_vector_uint_const_ptr
gsl_vector_uint_const_subvector
gsl_vector_uint_const_subvector_with_stride
gsl_vector_uint_const_view_array
gsl_vector_uint_const_view_array_with_stride
gsl_vector_uint_div
gsl_vector_uint_equal
gsl_vector_uint_fprintf
gsl_vector_uint_fread
gsl_vector_uint_free
gsl_vector_uint_fscanf
gsl_vector_uint_fwrite
gsl_vector_uint_get
gsl_vector_uint_isneg
gsl_vector_uint_isnonneg
gsl_vector_uint_isnull
gsl_vector_uint_ispos
gsl_vector_uint_max
gsl_vector_uint_max_index
gsl_vector_uint_memcpy
gsl_vector_uint_min
gsl_vector_uint_min_index
gsl_vector_uint_minmax
gsl_vector_uint_minmax_index
gsl_vector_uint_mul
gsl_vector_uint_ptr
gsl_vector_uint_reverse
gsl_vector_uint_scale
gsl_vector_uint_set
gsl_vector_uint_set_all
gsl_vector_uint_set_basis
gsl_vector_uint_set_zero
gsl_vector_uint_sub
gsl_vector_uint_subvector
gsl_vector_uint_subvector_with_stride
gsl_vector_uint_swap
gsl_vector_uint_swap_elements
gsl_vector_uint_view_array
gsl_vector_uint_view_array_with_stride
gsl_vector_ulong_add
gsl_vector_ulong_add_constant
gsl_vector_ulong_alloc
gsl_vector_ulong_alloc_col_from_matrix
gsl_vector_ulong_alloc_from_block
gsl_vector_ulong_alloc_from_vector
gsl_vector_ulong_alloc_row_from_matrix
gsl_vector_ulong_calloc
gsl_vector_ulong_const_ptr
gsl_vector_ulong_const_subvector
gsl_vector_ulong_const_subvector_with_stride
gsl_vector_ulong_const_view_array
gsl_vector_ulong_const_view_array_with_stride
gsl_vector_ulong_div
gsl_vector_ulong_equal
gsl_vector_ulong_fprintf
gsl_vector_ulong_fread
gsl_vector_ulong_free
gsl_vector_ulong_fscanf
gsl_vector_ulong_fwrite
gsl_vector_ulong_get
gsl_vector_ulong_isneg
gsl_vector_ulong_isnonneg
gsl_vector_ulong_isnull
gsl_vector_ulong_ispos
gsl_vector_ulong_max
gsl_vector_ulong_max_index
gsl_vector_ulong_memcpy
gsl_vector_ulong_min
gsl_vector_ulong_min_index
gsl_vector_ulong_minmax
gsl_vector_ulong_minmax_index
gsl_vector_ulong_mul
gsl_vector_ulong_ptr
gsl_vector_ulong_reverse
gsl_vector_ulong_scale
gsl_vector_ulong_set
gsl_vector_ulong_set_all
gsl_vector_ulong_set_basis
gsl_vector_ulong_set_zero
gsl_vector_ulong_sub
gsl_vector_ulong_subvector
gsl_vector_ulong_subvector_with_stride
gsl_vector_ulong_swap
gsl_vector_ulong_swap_elements
gsl_vector_ulong_view_array
gsl_vector_ulong_view_array_with_stride
gsl_vector_ushort_add
gsl_vector_ushort_add_constant
gsl_vector_ushort_alloc
gsl_vector_ushort_alloc_col_from_matrix
gsl_vector_ushort_alloc_from_block
gsl_vector_ushort_alloc_from_vector
gsl_vector_ushort_alloc_row_from_matrix
gsl_vector_ushort_calloc
gsl_vector_ushort_const_ptr
gsl_vector_ushort_const_subvector
gsl_vector_ushort_const_subvector_with_stride
gsl_vector_ushort_const_view_array
gsl_vector_ushort_const_view_array_with_stride
gsl_vector_ushort_div
gsl_vector_ushort_equal
gsl_vector_ushort_fprintf
gsl_vector_ushort_fread
gsl_vector_ushort_free
gsl_vector_ushort_fscanf
gsl_vector_ushort_fwrite
gsl_vector_ushort_get
gsl_vector_ushort_isneg
gsl_vector_ushort_isnonneg
gsl_vector_ushort_isnull
gsl_vector_ushort_ispos
gsl_vector_ushort_max
gsl_vector_ushort_max_index
gsl_vector_ushort_memcpy
gsl_vector_ushort_min
gsl_vector_ushort_min_index
gsl_vector_ushort_minmax
gsl_vector_ushort_minmax_index
gsl_vector_ushort_mul
gsl_vector_ushort_ptr
gsl_vector_ushort_reverse
gsl_vector_ushort_scale
gsl_vector_ushort_set
gsl_vector_ushort_set_all
gsl_vector_ushort_set_basis
gsl_vector_ushort_set_zero
gsl_vector_ushort_sub
gsl_vector_ushort_subvector
gsl_vector_ushort_subvector_with_stride
gsl_vector_ushort_swap
gsl_vector_ushort_swap_elements
gsl_vector_ushort_view_array
gsl_vector_ushort_view_array_with_stride
gsl_vector_view_array
gsl_vector_view_array_with_stride
gsl_version
gsl_wavelet2d_nstransform
gsl_wavelet2d_nstransform_forward
gsl_wavelet2d_nstransform_inverse
gsl_wavelet2d_nstransform_matrix
gsl_wavelet2d_nstransform_matrix_forward
gsl_wavelet2d_nstransform_matrix_inverse
gsl_wavelet2d_transform
gsl_wavelet2d_transform_forward
gsl_wavelet2d_transform_inverse
gsl_wavelet2d_transform_matrix
gsl_wavelet2d_transform_matrix_forward
gsl_wavelet2d_transform_matrix_inverse
gsl_wavelet_alloc
gsl_wavelet_bspline
gsl_wavelet_bspline_centered
gsl_wavelet_daubechies
gsl_wavelet_daubechies_centered
gsl_wavelet_free
gsl_wavelet_haar
gsl_wavelet_haar_centered
gsl_wavelet_name
gsl_wavelet_transform
gsl_wavelet_transform_forward
gsl_wavelet_transform_inverse
gsl_wavelet_workspace_alloc
gsl_wavelet_workspace_free

之后的命令是类似的。

link /subsystem:windows /machine:x86 /DLL /def:gsl-2.1.def /out:dll\gsl-2.1.dll gsl-2.1.lib gslcblas.lib msvcrt.lib

到此大功告成。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值