This repository has been archived by the owner on Nov 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
gsl.def
4060 lines (4060 loc) · 99.8 KB
/
gsl.def
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
; nm cyggsl-1.0.0.dll | grep -o "__*gsl_.*" | sed 's,_,,' > gsl.def ; remove gsl_sf_temme_gamma
EXPORTS
_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
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_fread
gsl_block_complex_long_double_free
gsl_block_complex_long_double_fwrite
gsl_block_complex_long_double_raw_fread
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_fread
gsl_block_long_double_free
gsl_block_long_double_fwrite
gsl_block_long_double_raw_fread
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_alloc
gsl_bspline_deriv_eval
gsl_bspline_deriv_eval_nonzero
gsl_bspline_deriv_free
gsl_bspline_eval
gsl_bspline_eval_nonzero
gsl_bspline_free
gsl_bspline_greville_abscissa
gsl_bspline_knots
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_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_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_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_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_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_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_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_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_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