rb-gsl 1.16.0.4 → 1.16.0.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +12 -0
- data/.travis.yml +24 -0
- data/AUTHORS +6 -0
- data/COPYING +341 -339
- data/ChangeLog +608 -587
- data/Gemfile +4 -0
- data/README.md +77 -0
- data/Rakefile +14 -33
- data/THANKS +1 -1
- data/examples/blas/blas.rb +1 -1
- data/examples/bspline.rb +3 -3
- data/examples/complex/functions.rb +4 -4
- data/examples/complex/mul.rb +1 -1
- data/examples/const/physconst.rb +4 -4
- data/examples/const/travel.rb +4 -4
- data/examples/eigen/nonsymmv.rb +1 -1
- data/examples/eigen/qhoscillator.rb +3 -3
- data/examples/fft/radix2.rb +1 -1
- data/examples/fft/real-halfcomplex.rb +3 -3
- data/examples/fft/real-halfcomplex2.rb +3 -3
- data/examples/fit/expfit.rb +1 -1
- data/examples/fit/multifit.rb +1 -1
- data/examples/fit/ndlinear.rb +44 -44
- data/examples/fit/nonlinearfit.rb +1 -1
- data/examples/fit/wlinear.rb +3 -3
- data/examples/function/function.rb +1 -1
- data/examples/function/min.rb +1 -1
- data/examples/function/synchrotron.rb +2 -2
- data/examples/gallery/koch.rb +1 -1
- data/examples/histogram/cauchy.rb +2 -2
- data/examples/histogram/exponential.rb +1 -1
- data/examples/histogram/histo3d.rb +1 -1
- data/examples/histogram/histogram-pdf.rb +2 -2
- data/examples/histogram/xexp.rb +1 -1
- data/examples/integration/ahmed.rb +2 -2
- data/examples/integration/cosmology.rb +7 -7
- data/examples/integration/friedmann.rb +4 -4
- data/examples/integration/qng.rb +1 -1
- data/examples/interp/demo.rb +2 -2
- data/examples/linalg/LQ_solve.rb +1 -1
- data/examples/linalg/LU.rb +1 -1
- data/examples/linalg/LU2.rb +1 -1
- data/examples/linalg/LU_narray.rb +1 -1
- data/examples/linalg/PTLQ.rb +1 -1
- data/examples/linalg/QRPT.rb +1 -1
- data/examples/linalg/chol.rb +1 -1
- data/examples/linalg/chol_narray.rb +1 -1
- data/examples/linalg/complex.rb +1 -1
- data/examples/math/elementary.rb +1 -1
- data/examples/math/functions.rb +1 -1
- data/examples/math/inf_nan.rb +1 -1
- data/examples/math/minmax.rb +1 -1
- data/examples/math/power.rb +1 -1
- data/examples/math/test.rb +1 -1
- data/examples/min.rb +1 -1
- data/examples/multimin/bundle.rb +1 -1
- data/examples/multimin/cqp.rb +17 -17
- data/examples/multiroot/fsolver3.rb +1 -1
- data/examples/odeiv/binarysystem.rb +12 -12
- data/examples/odeiv/demo.rb +3 -3
- data/examples/odeiv/frei1.rb +7 -7
- data/examples/odeiv/frei2.rb +4 -4
- data/examples/odeiv/oscillator.rb +1 -1
- data/examples/odeiv/sedov.rb +3 -3
- data/examples/odeiv/whitedwarf.rb +11 -11
- data/examples/permutation/ex1.rb +2 -2
- data/examples/permutation/permutation.rb +1 -1
- data/examples/poly/demo.rb +1 -1
- data/examples/random/diffusion.rb +1 -1
- data/examples/random/generator.rb +2 -2
- data/examples/random/randomwalk.rb +3 -3
- data/examples/random/rng.rb +1 -1
- data/examples/roots/bisection.rb +1 -1
- data/examples/roots/brent.rb +1 -1
- data/examples/roots/demo.rb +1 -1
- data/examples/roots/newton.rb +2 -2
- data/examples/roots/recombination.gp +0 -1
- data/examples/sf/hyperg.rb +1 -1
- data/examples/sf/sphbessel.rb +1 -1
- data/examples/sort/sort.rb +1 -1
- data/examples/tamu_anova.rb +4 -4
- data/examples/vector/add.rb +1 -1
- data/examples/vector/decimate.rb +1 -1
- data/examples/vector/gnuplot.rb +8 -8
- data/examples/vector/vector.rb +2 -2
- data/examples/wavelet/wavelet1.rb +1 -1
- data/ext/{gsl → gsl_native}/alf.c +9 -9
- data/ext/{gsl → gsl_native}/array.c +64 -151
- data/ext/{gsl → gsl_native}/array_complex.c +61 -63
- data/ext/{gsl → gsl_native}/blas.c +0 -0
- data/ext/{gsl → gsl_native}/blas1.c +32 -32
- data/ext/{gsl → gsl_native}/blas2.c +54 -58
- data/ext/{gsl → gsl_native}/blas3.c +54 -54
- data/ext/{gsl → gsl_native}/block.c +3 -6
- data/ext/{gsl/block_source.c → gsl_native/block_source.h} +109 -111
- data/ext/gsl_native/bspline.c +122 -0
- data/ext/{gsl → gsl_native}/bundle.c +0 -0
- data/ext/{gsl → gsl_native}/cdf.c +76 -88
- data/ext/{gsl → gsl_native}/cheb.c +74 -85
- data/ext/{gsl → gsl_native}/combination.c +9 -16
- data/ext/{gsl → gsl_native}/common.c +7 -37
- data/ext/{gsl → gsl_native}/complex.c +113 -115
- data/ext/gsl_native/const.c +331 -0
- data/ext/{gsl → gsl_native}/const_additional.c +12 -33
- data/ext/gsl_native/cqp.c +283 -0
- data/ext/{gsl → gsl_native}/deriv.c +22 -30
- data/ext/{gsl → gsl_native}/dht.c +20 -28
- data/ext/{gsl → gsl_native}/diff.c +23 -25
- data/ext/{gsl → gsl_native}/dirac.c +44 -45
- data/ext/{gsl → gsl_native}/eigen.c +1031 -1082
- data/ext/{gsl → gsl_native}/error.c +13 -13
- data/ext/{gsl → gsl_native}/extconf.rb +5 -13
- data/ext/{gsl → gsl_native}/fft.c +192 -198
- data/ext/{gsl → gsl_native}/fit.c +16 -16
- data/ext/gsl_native/fresnel.c +312 -0
- data/ext/{gsl → gsl_native}/function.c +29 -35
- data/ext/{gsl → gsl_native}/geometry.c +15 -15
- data/ext/{gsl → gsl_native}/graph.c +37 -87
- data/ext/{gsl → gsl_native}/gsl.c +10 -23
- data/ext/{gsl → gsl_native}/gsl_narray.c +15 -24
- data/ext/{gsl → gsl_native}/histogram.c +123 -150
- data/ext/{gsl → gsl_native}/histogram2d.c +71 -96
- data/ext/{gsl → gsl_native}/histogram3d.c +72 -72
- data/ext/{gsl → gsl_native}/histogram3d_source.c +195 -196
- data/ext/{gsl → gsl_native}/histogram_find.c +31 -33
- data/ext/{gsl → gsl_native}/histogram_oper.c +43 -52
- data/ext/{gsl → gsl_native}/ieee.c +7 -15
- data/ext/{gsl → gsl_native}/include/rb_gsl.h +0 -7
- data/ext/{gsl → gsl_native}/include/rb_gsl_array.h +15 -25
- data/ext/{gsl → gsl_native}/include/rb_gsl_cheb.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_common.h +44 -52
- data/ext/{gsl → gsl_native}/include/rb_gsl_complex.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_const.h +0 -5
- data/ext/{gsl → gsl_native}/include/rb_gsl_dirac.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_eigen.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_fft.h +0 -3
- data/ext/{gsl → gsl_native}/include/rb_gsl_fit.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_function.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_graph.h +2 -2
- data/ext/{gsl → gsl_native}/include/rb_gsl_histogram.h +8 -8
- data/ext/{gsl → gsl_native}/include/rb_gsl_histogram3d.h +50 -50
- data/ext/{gsl → gsl_native}/include/rb_gsl_integration.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_interp.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_linalg.h +0 -1
- data/ext/{gsl → gsl_native}/include/rb_gsl_math.h +0 -4
- data/ext/{gsl → gsl_native}/include/rb_gsl_odeiv.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_poly.h +3 -3
- data/ext/{gsl → gsl_native}/include/rb_gsl_rational.h +1 -1
- data/ext/{gsl → gsl_native}/include/rb_gsl_rng.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_root.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_sf.h +39 -43
- data/ext/{gsl → gsl_native}/include/rb_gsl_statistics.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_tensor.h +0 -0
- data/ext/{gsl → gsl_native}/include/rb_gsl_with_narray.h +0 -0
- data/ext/{gsl → gsl_native}/include/templates_off.h +0 -0
- data/ext/{gsl → gsl_native}/include/templates_on.h +1 -1
- data/ext/{gsl → gsl_native}/integration.c +160 -183
- data/ext/{gsl → gsl_native}/interp.c +23 -31
- data/ext/gsl_native/jacobi.c +733 -0
- data/ext/{gsl → gsl_native}/linalg.c +448 -576
- data/ext/{gsl → gsl_native}/linalg_complex.c +84 -98
- data/ext/{gsl → gsl_native}/math.c +45 -63
- data/ext/{gsl → gsl_native}/matrix.c +4 -6
- data/ext/{gsl → gsl_native}/matrix_complex.c +111 -114
- data/ext/{gsl → gsl_native}/matrix_double.c +74 -77
- data/ext/{gsl → gsl_native}/matrix_int.c +49 -50
- data/ext/{gsl/matrix_source.c → gsl_native/matrix_source.h} +280 -302
- data/ext/{gsl → gsl_native}/min.c +43 -74
- data/ext/{gsl → gsl_native}/monte.c +45 -59
- data/ext/{gsl → gsl_native}/multifit.c +138 -147
- data/ext/{gsl → gsl_native}/multimin.c +55 -83
- data/ext/{gsl → gsl_native}/multimin_fsdf.c +15 -15
- data/ext/{gsl → gsl_native}/multiroots.c +61 -64
- data/ext/{gsl → gsl_native}/multiset.c +3 -7
- data/ext/{gsl → gsl_native}/ndlinear.c +320 -321
- data/ext/{gsl → gsl_native}/nmf.c +11 -11
- data/ext/{gsl → gsl_native}/nmf_wrap.c +1 -1
- data/ext/{gsl → gsl_native}/ntuple.c +13 -13
- data/ext/{gsl → gsl_native}/odeiv.c +95 -106
- data/ext/gsl_native/ool.c +879 -0
- data/ext/{gsl → gsl_native}/permutation.c +36 -34
- data/ext/{gsl → gsl_native}/poly.c +2 -5
- data/ext/{gsl → gsl_native}/poly2.c +6 -6
- data/ext/{gsl/poly_source.c → gsl_native/poly_source.h} +232 -275
- data/ext/{gsl → gsl_native}/qrng.c +6 -17
- data/ext/{gsl → gsl_native}/randist.c +218 -243
- data/ext/{gsl → gsl_native}/rational.c +9 -9
- data/ext/{gsl → gsl_native}/rng.c +29 -45
- data/ext/{gsl → gsl_native}/root.c +43 -43
- data/ext/{gsl → gsl_native}/sf.c +163 -197
- data/ext/{gsl → gsl_native}/sf_airy.c +0 -0
- data/ext/{gsl → gsl_native}/sf_bessel.c +6 -6
- data/ext/{gsl → gsl_native}/sf_clausen.c +0 -0
- data/ext/{gsl → gsl_native}/sf_coulomb.c +39 -39
- data/ext/{gsl → gsl_native}/sf_coupling.c +29 -29
- data/ext/{gsl → gsl_native}/sf_dawson.c +0 -0
- data/ext/{gsl → gsl_native}/sf_debye.c +0 -9
- data/ext/{gsl → gsl_native}/sf_dilog.c +0 -0
- data/ext/{gsl → gsl_native}/sf_elementary.c +2 -2
- data/ext/{gsl → gsl_native}/sf_ellint.c +42 -42
- data/ext/{gsl → gsl_native}/sf_elljac.c +2 -2
- data/ext/{gsl → gsl_native}/sf_erfc.c +0 -4
- data/ext/{gsl → gsl_native}/sf_exp.c +2 -2
- data/ext/{gsl → gsl_native}/sf_expint.c +1 -11
- data/ext/{gsl → gsl_native}/sf_fermi_dirac.c +0 -0
- data/ext/{gsl → gsl_native}/sf_gamma.c +1 -5
- data/ext/{gsl → gsl_native}/sf_gegenbauer.c +0 -0
- data/ext/{gsl → gsl_native}/sf_hyperg.c +0 -0
- data/ext/{gsl → gsl_native}/sf_laguerre.c +3 -3
- data/ext/{gsl → gsl_native}/sf_lambert.c +0 -0
- data/ext/{gsl → gsl_native}/sf_legendre.c +0 -0
- data/ext/{gsl → gsl_native}/sf_log.c +3 -3
- data/ext/gsl_native/sf_mathieu.c +235 -0
- data/ext/{gsl → gsl_native}/sf_power.c +0 -0
- data/ext/{gsl → gsl_native}/sf_psi.c +2 -11
- data/ext/{gsl → gsl_native}/sf_synchrotron.c +0 -0
- data/ext/{gsl → gsl_native}/sf_transport.c +0 -0
- data/ext/{gsl → gsl_native}/sf_trigonometric.c +3 -3
- data/ext/{gsl → gsl_native}/sf_zeta.c +0 -4
- data/ext/{gsl → gsl_native}/signal.c +60 -64
- data/ext/{gsl → gsl_native}/siman.c +36 -40
- data/ext/{gsl → gsl_native}/sort.c +3 -4
- data/ext/{gsl → gsl_native}/spline.c +25 -43
- data/ext/{gsl → gsl_native}/stats.c +102 -115
- data/ext/{gsl → gsl_native}/sum.c +32 -32
- data/ext/{gsl → gsl_native}/tamu_anova.c +0 -0
- data/ext/{gsl → gsl_native}/tensor.c +2 -4
- data/ext/{gsl/tensor_source.c → gsl_native/tensor_source.h} +144 -144
- data/ext/{gsl → gsl_native}/vector.c +2 -4
- data/ext/{gsl → gsl_native}/vector_complex.c +165 -171
- data/ext/{gsl → gsl_native}/vector_double.c +167 -174
- data/ext/{gsl → gsl_native}/vector_int.c +23 -25
- data/ext/{gsl/vector_source.c → gsl_native/vector_source.h} +400 -414
- data/ext/{gsl → gsl_native}/wavelet.c +215 -236
- data/lib/gsl.rb +1 -7
- data/lib/gsl/gnuplot.rb +2 -2
- data/lib/gsl/version.rb +1 -3
- data/rb-gsl.gemspec +29 -0
- data/rdoc/blas.rdoc +3 -3
- data/rdoc/bspline.rdoc +7 -7
- data/rdoc/cheb.rdoc +8 -8
- data/rdoc/cholesky_complex.rdoc +1 -1
- data/rdoc/combi.rdoc +9 -9
- data/rdoc/complex.rdoc +11 -11
- data/rdoc/const.rdoc +20 -20
- data/rdoc/dht.rdoc +6 -6
- data/rdoc/diff.rdoc +6 -6
- data/rdoc/ehandling.rdoc +3 -3
- data/rdoc/eigen.rdoc +11 -11
- data/rdoc/fft.rdoc +26 -26
- data/rdoc/fit.rdoc +18 -18
- data/rdoc/graph.rdoc +2 -2
- data/rdoc/hist.rdoc +16 -16
- data/rdoc/hist2d.rdoc +4 -4
- data/rdoc/hist3d.rdoc +3 -3
- data/rdoc/integration.rdoc +16 -16
- data/rdoc/interp.rdoc +11 -11
- data/rdoc/intro.rdoc +3 -3
- data/rdoc/linalg.rdoc +20 -20
- data/rdoc/linalg_complex.rdoc +1 -1
- data/rdoc/math.rdoc +13 -13
- data/rdoc/matrix.rdoc +22 -22
- data/rdoc/min.rdoc +9 -9
- data/rdoc/monte.rdoc +3 -3
- data/rdoc/multimin.rdoc +12 -12
- data/rdoc/multiroot.rdoc +12 -12
- data/rdoc/narray.rdoc +9 -9
- data/rdoc/ndlinear.rdoc +4 -4
- data/rdoc/nonlinearfit.rdoc +17 -17
- data/rdoc/ntuple.rdoc +5 -5
- data/rdoc/odeiv.rdoc +12 -12
- data/rdoc/perm.rdoc +11 -11
- data/rdoc/poly.rdoc +17 -17
- data/rdoc/qrng.rdoc +9 -9
- data/rdoc/randist.rdoc +10 -10
- data/rdoc/ref.rdoc +49 -49
- data/rdoc/rng.rdoc +9 -9
- data/rdoc/roots.rdoc +12 -12
- data/rdoc/sf.rdoc +35 -35
- data/rdoc/siman.rdoc +3 -3
- data/rdoc/sort.rdoc +6 -6
- data/rdoc/start.rdoc +2 -2
- data/rdoc/stats.rdoc +13 -13
- data/rdoc/sum.rdoc +4 -4
- data/rdoc/tensor.rdoc +3 -3
- data/rdoc/tut.rdoc +1 -1
- data/rdoc/use.rdoc +3 -3
- data/rdoc/vector.rdoc +28 -28
- data/rdoc/vector_complex.rdoc +6 -6
- data/rdoc/wavelet.rdoc +8 -8
- data/test/gsl/blas_test.rb +1 -1
- data/test/gsl/index_test.rb +61 -0
- data/test/gsl/matrix_test.rb +21 -0
- data/uncrustify.cfg +1693 -0
- metadata +212 -243
- data/README +0 -28
- data/ext/gsl/bspline.c +0 -130
- data/ext/gsl/const.c +0 -672
- data/ext/gsl/cqp.c +0 -283
- data/ext/gsl/fcmp.c +0 -64
- data/ext/gsl/fresnel.c +0 -312
- data/ext/gsl/jacobi.c +0 -739
- data/ext/gsl/ool.c +0 -879
- data/ext/gsl/oper_complex_source.c +0 -251
- data/ext/gsl/sf_mathieu.c +0 -238
- data/rdoc/index.rdoc +0 -50
data/rdoc/randist.rdoc
CHANGED
@@ -20,12 +20,12 @@
|
|
20
20
|
# allowing full accuracy to be retained for small results.
|
21
21
|
#
|
22
22
|
# Contents:
|
23
|
-
# 1. {Introduction}[link:randist_rdoc.html#label-Introduction]
|
24
|
-
# 1. {The Gaussian Distribution}[link:randist_rdoc.html#label-The+Gaussian+Distribution]
|
25
|
-
# 1. {The Gaussian Tail Distribution}[link:randist_rdoc.html#label-The+Gaussian+Tail+Distribution]
|
23
|
+
# 1. {Introduction}[link:rdoc/randist_rdoc.html#label-Introduction]
|
24
|
+
# 1. {The Gaussian Distribution}[link:rdoc/randist_rdoc.html#label-The+Gaussian+Distribution]
|
25
|
+
# 1. {The Gaussian Tail Distribution}[link:rdoc/randist_rdoc.html#label-The+Gaussian+Tail+Distribution]
|
26
26
|
# ...
|
27
27
|
# and more, see {the GSL reference}[https://gnu.org/software/gsl/manual/]
|
28
|
-
# 1. {Shuffling and Sampling}[link:randist_rdoc.html#label-Shuffling+and+Sampling]
|
28
|
+
# 1. {Shuffling and Sampling}[link:rdoc/randist_rdoc.html#label-Shuffling+and+Sampling]
|
29
29
|
#
|
30
30
|
# == Introduction
|
31
31
|
# Continuous random number distributions are defined by a probability density
|
@@ -205,12 +205,12 @@
|
|
205
205
|
# * GSL::Rng#shuffle(v, n)
|
206
206
|
#
|
207
207
|
# This randomly shuffles the order of <tt>n</tt> objects,
|
208
|
-
# stored in the {GSL::Vector}[link:vector_rdoc.html] object <tt>v</tt>.
|
208
|
+
# stored in the {GSL::Vector}[link:rdoc/vector_rdoc.html] object <tt>v</tt>.
|
209
209
|
# ---
|
210
210
|
# * GSL::Rng#choose(v, k)
|
211
211
|
#
|
212
|
-
# This returns a {GSL::Vector}[link:vector_rdoc.html] object with <tt>k</tt> objects
|
213
|
-
# taken randomly from the {GSL::Vector}[link:vector_rdoc.html] object <tt>v</tt>.
|
212
|
+
# This returns a {GSL::Vector}[link:rdoc/vector_rdoc.html] object with <tt>k</tt> objects
|
213
|
+
# taken randomly from the {GSL::Vector}[link:rdoc/vector_rdoc.html] object <tt>v</tt>.
|
214
214
|
#
|
215
215
|
# The objects are sampled without replacement, thus each object can only
|
216
216
|
# appear once in the returned vector. It is required that <tt>k</tt> be less
|
@@ -224,10 +224,10 @@
|
|
224
224
|
# can appear more than once in the output sequence. There is no requirement
|
225
225
|
# that <tt>k</tt> be less than the length of <tt>v</tt>.
|
226
226
|
#
|
227
|
-
# {prev}[link:qrng_rdoc.html]
|
228
|
-
# {next}[link:stats_rdoc.html]
|
227
|
+
# {prev}[link:rdoc/qrng_rdoc.html]
|
228
|
+
# {next}[link:rdoc/stats_rdoc.html]
|
229
229
|
#
|
230
|
-
# {Reference index}[link:ref_rdoc.html]
|
230
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
231
231
|
# {top}[link:index.html]
|
232
232
|
#
|
233
233
|
#
|
data/rdoc/ref.rdoc
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#
|
2
|
-
# = {Ruby/GSL Reference}[link:ref_rdoc.html]
|
2
|
+
# = {Ruby/GSL Reference}[link:rdoc/ref_rdoc.html]
|
3
3
|
# (See also {Gnu Scientific Library -- Reference Manual}[https://gnu.org/software/gsl/manual/html_node/])
|
4
4
|
#
|
5
5
|
# == Front Matter
|
@@ -31,63 +31,63 @@
|
|
31
31
|
#
|
32
32
|
# == Ruby/GSL Reference
|
33
33
|
#
|
34
|
-
# 1. {Introduction}[link:intro_rdoc.html]
|
35
|
-
# 1. {Using Ruby/GSL}[link:use_rdoc.html]
|
36
|
-
# 1. {Error Handling}[link:ehandling_rdoc.html]
|
37
|
-
# 1. {Mathematical Functions}[link:math_rdoc.html]
|
38
|
-
# 1. {Complex Numbers}[link:complex_rdoc.html]
|
39
|
-
# 1. {Polynomials}[link:poly_rdoc.html]
|
40
|
-
# 1. {Special Functions}[link:sf_rdoc.html]
|
41
|
-
# 1. {Vectors}[link:vector_rdoc.html] and {Matrices}[link:matrix_rdoc.html]
|
42
|
-
# 1. {Permutations}[link:perm_rdoc.html]
|
43
|
-
# 1. {Combinations}[link:combi_rdoc.html]
|
34
|
+
# 1. {Introduction}[link:rdoc/intro_rdoc.html]
|
35
|
+
# 1. {Using Ruby/GSL}[link:rdoc/use_rdoc.html]
|
36
|
+
# 1. {Error Handling}[link:rdoc/ehandling_rdoc.html]
|
37
|
+
# 1. {Mathematical Functions}[link:rdoc/math_rdoc.html]
|
38
|
+
# 1. {Complex Numbers}[link:rdoc/complex_rdoc.html]
|
39
|
+
# 1. {Polynomials}[link:rdoc/poly_rdoc.html]
|
40
|
+
# 1. {Special Functions}[link:rdoc/sf_rdoc.html]
|
41
|
+
# 1. {Vectors}[link:rdoc/vector_rdoc.html] and {Matrices}[link:rdoc/matrix_rdoc.html]
|
42
|
+
# 1. {Permutations}[link:rdoc/perm_rdoc.html]
|
43
|
+
# 1. {Combinations}[link:rdoc/combi_rdoc.html]
|
44
44
|
--
|
45
|
-
# 1. {Multiset}[link:sort_rdoc.html] (GSL-1.14)
|
45
|
+
# 1. {Multiset}[link:rdoc/sort_rdoc.html] (GSL-1.14)
|
46
46
|
++
|
47
|
-
# 1. {Sorting}[link:sort_rdoc.html]
|
48
|
-
# 1. {BLAS Support}[link:blas_rdoc.html]
|
49
|
-
# 1. {Linear Algebra}[link:linalg_rdoc.html]
|
50
|
-
# 1. {Eigen Systems}[link:eigen_rdoc.html]
|
51
|
-
# 1. {Fast Fourier Transform}[link:fft_rdoc.html]
|
52
|
-
# 1. {Numerical Integration}[link:integration_rdoc.html]
|
53
|
-
# 1. {Random Number Generation}[link:rng_rdoc.html]
|
54
|
-
# 1. {Quasi-Random Sequences}[link:qrng_rdoc.html]
|
55
|
-
# 1. {Random Number Distributions}[link:randist_rdoc.html]
|
56
|
-
# 1. {Statistics}[link:stats_rdoc.html]
|
57
|
-
# 1. {1d-Histograms}[link:hist_rdoc.html], {2d-Histograms}[link:hist2d_rdoc.html] and {3d-Histograms}[link:hist3d_rdoc.html]
|
58
|
-
# 1. {N-tuples}[link:ntuple_rdoc.html]
|
59
|
-
# 1. {Monte-Carlo Integration}[link:monte_rdoc.html]
|
60
|
-
# 1. {Simulated Annealing}[link:siman_rdoc.html]
|
61
|
-
# 1. {Ordinary Differential Equations}[link:odeiv_rdoc.html]
|
62
|
-
# 1. {Interpolation}[link:interp_rdoc.html]
|
63
|
-
# 1. {Numerical Differentiation}[link:diff_rdoc.html]
|
64
|
-
# 1. {Chebyshev Approximations}[link:cheb_rdoc.html]
|
65
|
-
# 1. {Series Acceleration}[link:sum_rdoc.html]
|
66
|
-
# 1. {Wavelet Transforms}[link:wavelet_rdoc.html] (GSL-1.6 feature)
|
67
|
-
# 1. {Discrete Hankel Transforms}[link:dht_rdoc.html]
|
68
|
-
# 1. {One dimensional Root-Finding}[link:roots_rdoc.html]
|
69
|
-
# 1. {One dimensional Minimization}[link:min_rdoc.html]
|
70
|
-
# 1. {Multidimensional Root-Finding}[link:multiroot_rdoc.html]
|
71
|
-
# 1. {Multidimensional Minimization}[link:multimin_rdoc.html]
|
72
|
-
# 1. {Least-Squares Fitting}[link:fit_rdoc.html]
|
73
|
-
# 1. {Nonlinear Least-Squares Fitting}[link:nonlinearfit_rdoc.html]
|
74
|
-
# 1. {Basis Splines}[link:bspline_rdoc.html]
|
75
|
-
# 1. {Physical Constants}[link:const_rdoc.html]
|
76
|
-
# 1. {Graphics}[link:graph_rdoc.html]
|
47
|
+
# 1. {Sorting}[link:rdoc/sort_rdoc.html]
|
48
|
+
# 1. {BLAS Support}[link:rdoc/blas_rdoc.html]
|
49
|
+
# 1. {Linear Algebra}[link:rdoc/linalg_rdoc.html]
|
50
|
+
# 1. {Eigen Systems}[link:rdoc/eigen_rdoc.html]
|
51
|
+
# 1. {Fast Fourier Transform}[link:rdoc/fft_rdoc.html]
|
52
|
+
# 1. {Numerical Integration}[link:rdoc/integration_rdoc.html]
|
53
|
+
# 1. {Random Number Generation}[link:rdoc/rng_rdoc.html]
|
54
|
+
# 1. {Quasi-Random Sequences}[link:rdoc/qrng_rdoc.html]
|
55
|
+
# 1. {Random Number Distributions}[link:rdoc/randist_rdoc.html]
|
56
|
+
# 1. {Statistics}[link:rdoc/stats_rdoc.html]
|
57
|
+
# 1. {1d-Histograms}[link:rdoc/hist_rdoc.html], {2d-Histograms}[link:rdoc/hist2d_rdoc.html] and {3d-Histograms}[link:rdoc/hist3d_rdoc.html]
|
58
|
+
# 1. {N-tuples}[link:rdoc/ntuple_rdoc.html]
|
59
|
+
# 1. {Monte-Carlo Integration}[link:rdoc/monte_rdoc.html]
|
60
|
+
# 1. {Simulated Annealing}[link:rdoc/siman_rdoc.html]
|
61
|
+
# 1. {Ordinary Differential Equations}[link:rdoc/odeiv_rdoc.html]
|
62
|
+
# 1. {Interpolation}[link:rdoc/interp_rdoc.html]
|
63
|
+
# 1. {Numerical Differentiation}[link:rdoc/diff_rdoc.html]
|
64
|
+
# 1. {Chebyshev Approximations}[link:rdoc/cheb_rdoc.html]
|
65
|
+
# 1. {Series Acceleration}[link:rdoc/sum_rdoc.html]
|
66
|
+
# 1. {Wavelet Transforms}[link:rdoc/wavelet_rdoc.html] (GSL-1.6 feature)
|
67
|
+
# 1. {Discrete Hankel Transforms}[link:rdoc/dht_rdoc.html]
|
68
|
+
# 1. {One dimensional Root-Finding}[link:rdoc/roots_rdoc.html]
|
69
|
+
# 1. {One dimensional Minimization}[link:rdoc/min_rdoc.html]
|
70
|
+
# 1. {Multidimensional Root-Finding}[link:rdoc/multiroot_rdoc.html]
|
71
|
+
# 1. {Multidimensional Minimization}[link:rdoc/multimin_rdoc.html]
|
72
|
+
# 1. {Least-Squares Fitting}[link:rdoc/fit_rdoc.html]
|
73
|
+
# 1. {Nonlinear Least-Squares Fitting}[link:rdoc/nonlinearfit_rdoc.html]
|
74
|
+
# 1. {Basis Splines}[link:rdoc/bspline_rdoc.html]
|
75
|
+
# 1. {Physical Constants}[link:rdoc/const_rdoc.html]
|
76
|
+
# 1. {Graphics}[link:rdoc/graph_rdoc.html]
|
77
77
|
# 1. Supported GSL add-on packages
|
78
|
-
# 1. {rngextra}[link:rng_rdoc.html#label-Random+number+generator+initialization]
|
79
|
-
# 1. {Tensor manipulations}[link:tensor_rdoc.html]
|
78
|
+
# 1. {rngextra}[link:rdoc/rng_rdoc.html#label-Random+number+generator+initialization]
|
79
|
+
# 1. {Tensor manipulations}[link:rdoc/tensor_rdoc.html]
|
80
80
|
# 1. OOL: Open Optimization library (see examples/ool/*.rb)
|
81
81
|
# 1. CQP and Bundle (see examples/multimin/cqp.rb, bundle.rb)
|
82
82
|
# 1. quartic
|
83
83
|
# 1. jacobi (see examples/jacobi/*.rb)
|
84
|
-
# 1. {NDLINEAR: multi-linear, multi-parameter least squares fitting}[link:ndlinear_rdoc.html]
|
85
|
-
# 1. {ALF: associated Legendre polynomials}[link:alf_rdoc.html]
|
86
|
-
# 1. {NArray compatibilities}[link:narray_rdoc.html]
|
87
|
-
# 1. {Changes since Ruby/GSL 1.10.3}[link:changes_rdoc.html]
|
84
|
+
# 1. {NDLINEAR: multi-linear, multi-parameter least squares fitting}[link:rdoc/ndlinear_rdoc.html]
|
85
|
+
# 1. {ALF: associated Legendre polynomials}[link:rdoc/alf_rdoc.html]
|
86
|
+
# 1. {NArray compatibilities}[link:rdoc/narray_rdoc.html]
|
87
|
+
# 1. {Changes since Ruby/GSL 1.10.3}[link:rdoc/changes_rdoc.html]
|
88
88
|
# 1. {GNU Free Documentation Licence}[https://gnu.org/software/gsl/manual/html_node/GNU-Free-Documentation-License.html]
|
89
89
|
#
|
90
|
-
# {next}[link:intro_rdoc.html]
|
90
|
+
# {next}[link:rdoc/intro_rdoc.html]
|
91
91
|
#
|
92
92
|
# {top}[link:index.html]
|
93
93
|
#
|
data/rdoc/rng.rdoc
CHANGED
@@ -13,12 +13,12 @@
|
|
13
13
|
#
|
14
14
|
#
|
15
15
|
# Contents:
|
16
|
-
# 1. {General comments on random numbers}[link:rng_rdoc.html#label-General+comments+on+random+numbers]
|
17
|
-
# 1. {The Random Number Generator Interface: GSL::Rng class}[link:rng_rdoc.html#label-The+Random+Number+Generator+Interface]
|
18
|
-
# 1. {Random number generator initialization}[link:rng_rdoc.html#label-Random+number+generator+initialization]
|
19
|
-
# 1. {Sampling from a random number generator}[link:rng_rdoc.html#label-Sampling+from+a+random+number+generator]
|
20
|
-
# 1. {Auxiliary random number generator functions}[link:rng_rdoc.html#label-Auxiliary+random+number+generator+functions]
|
21
|
-
# 1. {Random number environment variables}[link:rng_rdoc.html#label-Random+number+environment+variables]
|
16
|
+
# 1. {General comments on random numbers}[link:rdoc/rng_rdoc.html#label-General+comments+on+random+numbers]
|
17
|
+
# 1. {The Random Number Generator Interface: GSL::Rng class}[link:rdoc/rng_rdoc.html#label-The+Random+Number+Generator+Interface]
|
18
|
+
# 1. {Random number generator initialization}[link:rdoc/rng_rdoc.html#label-Random+number+generator+initialization]
|
19
|
+
# 1. {Sampling from a random number generator}[link:rdoc/rng_rdoc.html#label-Sampling+from+a+random+number+generator]
|
20
|
+
# 1. {Auxiliary random number generator functions}[link:rdoc/rng_rdoc.html#label-Auxiliary+random+number+generator+functions]
|
21
|
+
# 1. {Random number environment variables}[link:rdoc/rng_rdoc.html#label-Random+number+environment+variables]
|
22
22
|
#
|
23
23
|
# == General comments on random numbers
|
24
24
|
# In 1988, Park and Miller wrote a paper entitled "Random number generators:
|
@@ -195,9 +195,9 @@
|
|
195
195
|
# The initial value of the default seed is zero.
|
196
196
|
#
|
197
197
|
#
|
198
|
-
# {prev}[link:integration_rdoc.html]
|
199
|
-
# {next}[link:qrng_rdoc.html]
|
198
|
+
# {prev}[link:rdoc/integration_rdoc.html]
|
199
|
+
# {next}[link:rdoc/qrng_rdoc.html]
|
200
200
|
#
|
201
|
-
# {Reference index}[link:ref_rdoc.html]
|
201
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
202
202
|
# {top}[link:index.html]
|
203
203
|
#
|
data/rdoc/roots.rdoc
CHANGED
@@ -8,13 +8,13 @@
|
|
8
8
|
# and its derivative (hence the name fdf) to be supplied by the user.
|
9
9
|
#
|
10
10
|
# Contents:
|
11
|
-
# 1. {Solver classes}[link:roots_rdoc.html#label-Solver+classes]
|
12
|
-
# 1. {Methods}[link:roots_rdoc.html#label-Methods]
|
13
|
-
# 1. {Methods to solve equations}[link:roots_rdoc.html#label-Methods+to+solve+equations]
|
14
|
-
# 1. {GSL::Function_fdf class: Providing the function to solve}[link:roots_rdoc.html#label-Function_fdf+class]
|
15
|
-
# 1. {Search Stopping Parameters}[link:roots_rdoc.html#label-Search+Stopping+Parameters]
|
16
|
-
# 1. {Higher-level interface}[link:roots_rdoc.html#label-High-level+interface]
|
17
|
-
# 1. {Example}[link:roots_rdoc.html#label-Example]
|
11
|
+
# 1. {Solver classes}[link:rdoc/roots_rdoc.html#label-Solver+classes]
|
12
|
+
# 1. {Methods}[link:rdoc/roots_rdoc.html#label-Methods]
|
13
|
+
# 1. {Methods to solve equations}[link:rdoc/roots_rdoc.html#label-Methods+to+solve+equations]
|
14
|
+
# 1. {GSL::Function_fdf class: Providing the function to solve}[link:rdoc/roots_rdoc.html#label-Function_fdf+class]
|
15
|
+
# 1. {Search Stopping Parameters}[link:rdoc/roots_rdoc.html#label-Search+Stopping+Parameters]
|
16
|
+
# 1. {Higher-level interface}[link:rdoc/roots_rdoc.html#label-High-level+interface]
|
17
|
+
# 1. {Example}[link:rdoc/roots_rdoc.html#label-Example]
|
18
18
|
#
|
19
19
|
# == Solver classes
|
20
20
|
#
|
@@ -51,7 +51,7 @@
|
|
51
51
|
# This initialize the solver <tt>self</tt> to use the function <tt>f</tt>,
|
52
52
|
# and the initial search
|
53
53
|
# interval <tt>xl, xu</tt>. The function to be solved <tt>f</tt> is given
|
54
|
-
# an instanse of the {GSL::Function}[link:function_rdoc.html] class.
|
54
|
+
# an instanse of the {GSL::Function}[link:rdoc/function_rdoc.html] class.
|
55
55
|
#
|
56
56
|
# ---
|
57
57
|
# * GSL::Root::FdfSolver#set(fdf, r)
|
@@ -91,7 +91,7 @@
|
|
91
91
|
#
|
92
92
|
# === Function_fdf class
|
93
93
|
# The <tt>FSolver</tt> object require an instance of the
|
94
|
-
# {GSL::Function}[link:function_rdoc.html] class, which is already introduced elsewhere.
|
94
|
+
# {GSL::Function}[link:rdoc/function_rdoc.html] class, which is already introduced elsewhere.
|
95
95
|
# The <tt>FdfSolver</tt> which uses the root-polishing algorithm requires not only
|
96
96
|
# the function to solve, but also
|
97
97
|
# procedures to calculate the derivatives. This is
|
@@ -296,10 +296,10 @@
|
|
296
296
|
# printf("%5d %10.7f %+10.7f %10.7f\n", iter, x, x - expected, x - x0)
|
297
297
|
# end while status != GSL::SUCCESS
|
298
298
|
#
|
299
|
-
# {prev}[link:dht_rdoc.html]
|
300
|
-
# {next}[link:min_rdoc.html]
|
299
|
+
# {prev}[link:rdoc/dht_rdoc.html]
|
300
|
+
# {next}[link:rdoc/min_rdoc.html]
|
301
301
|
#
|
302
|
-
# {Reference index}[link:ref_rdoc.html]
|
302
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
303
303
|
# {top}[link:index.html]
|
304
304
|
#
|
305
305
|
#
|
data/rdoc/sf.rdoc
CHANGED
@@ -2,38 +2,38 @@
|
|
2
2
|
# = Special Functions
|
3
3
|
#
|
4
4
|
# === Contents:
|
5
|
-
# 1. {Usage:}[link:sf_rdoc.html#label-Usage]
|
6
|
-
# 1. {GSL::Sf::Result class}[link:sf_rdoc.html#label-Result+class]
|
7
|
-
# 1. {Modes}[link:sf_rdoc.html#label-Modes]
|
8
|
-
# 1. {Airy functions}[link:sf_rdoc.html#label-Airy+Functions+and+Derivatives]
|
9
|
-
# 1. {Bessel functins}[link:sf_rdoc.html#label-Bessel+Functions]
|
10
|
-
# 1. {Clausen functins}[link:sf_rdoc.html#label-Clausen+Functions]
|
11
|
-
# 1. {Coulomb functins}[link:sf_rdoc.html#label-Coulomb+Functions]
|
12
|
-
# 1. {Coupling coefficients}[link:sf_rdoc.html#label-Coupling+Coefficients]
|
13
|
-
# 1. {Dawson coefficients}[link:sf_rdoc.html#label-Dawson+Function]
|
14
|
-
# 1. {Debye coefficients}[link:sf_rdoc.html#label-Debye+Functions]
|
15
|
-
# 1. {Dilogarithm}[link:sf_rdoc.html#label-Dilogarithm]
|
16
|
-
# 1. {Elementary operations}[link:sf_rdoc.html#label-Elementary+Operations]
|
17
|
-
# 1. {Elliptic integrals}[link:sf_rdoc.html#label-Elliptic+Integrals]
|
18
|
-
# 1. {Elliptic functions}[link:sf_rdoc.html#label-Elliptic+Functions+%28Jacobi%29]
|
19
|
-
# 1. {Error functions}[link:sf_rdoc.html#label-Error+Functions]
|
20
|
-
# 1. {Exponential functions}[link:sf_rdoc.html#label-Exponential+Functions]
|
21
|
-
# 1. {Exponential integrals}[link:sf_rdoc.html#label-Exponential+Integrals]
|
22
|
-
# 1. {Fermi-Dirac function}[link:sf_rdoc.html#label-Fermi-Dirac+Functions]
|
23
|
-
# 1. {Gamma function}[link:sf_rdoc.html#label-Gamma+Function]
|
24
|
-
# 1. {Gegenbauer functions}[link:sf_rdoc.html#label-Gegenbauer+Functions]
|
25
|
-
# 1. {Hypergeometric functions}[link:sf_rdoc.html#label-Hypergeometric+Functions]
|
26
|
-
# 1. {Laguerre functions}[link:sf_rdoc.html#label-Laguerre+Functions]
|
27
|
-
# 1. {Lambert W functions}[link:sf_rdoc.html#label-Lambert+W+Functions]
|
28
|
-
# 1. {Legendre functions and spherical harmonics}[link:sf_rdoc.html#label-Legendre+Functions+and+Spherical+Harmonics]
|
29
|
-
# 1. {Logarithm and related functions}[link:sf_rdoc.html#label-Logarithm+and+Related+Functions]
|
30
|
-
# 1. {Mathieu functions}[link:sf_rdoc.html#label-Mathieu+functions]
|
31
|
-
# 1. {Power function}[link:sf_rdoc.html#label-Power+Functions]
|
32
|
-
# 1. {Psi (digamma) function}[link:sf_rdoc.html#label-Psi+%28Digamma%29+Function]
|
33
|
-
# 1. {Synchrotron functions}[link:sf_rdoc.html#label-Synchrotron+Functions]
|
34
|
-
# 1. {Transport functions}[link:sf_rdoc.html#label-Transport+Functions]
|
35
|
-
# 1. {Trigonometric functions}[link:sf_rdoc.html#label-Trigonometric+Functions]
|
36
|
-
# 1. {Zeta functions}[link:sf_rdoc.html#label-Zeta+Functions]
|
5
|
+
# 1. {Usage:}[link:rdoc/sf_rdoc.html#label-Usage]
|
6
|
+
# 1. {GSL::Sf::Result class}[link:rdoc/sf_rdoc.html#label-Result+class]
|
7
|
+
# 1. {Modes}[link:rdoc/sf_rdoc.html#label-Modes]
|
8
|
+
# 1. {Airy functions}[link:rdoc/sf_rdoc.html#label-Airy+Functions+and+Derivatives]
|
9
|
+
# 1. {Bessel functins}[link:rdoc/sf_rdoc.html#label-Bessel+Functions]
|
10
|
+
# 1. {Clausen functins}[link:rdoc/sf_rdoc.html#label-Clausen+Functions]
|
11
|
+
# 1. {Coulomb functins}[link:rdoc/sf_rdoc.html#label-Coulomb+Functions]
|
12
|
+
# 1. {Coupling coefficients}[link:rdoc/sf_rdoc.html#label-Coupling+Coefficients]
|
13
|
+
# 1. {Dawson coefficients}[link:rdoc/sf_rdoc.html#label-Dawson+Function]
|
14
|
+
# 1. {Debye coefficients}[link:rdoc/sf_rdoc.html#label-Debye+Functions]
|
15
|
+
# 1. {Dilogarithm}[link:rdoc/sf_rdoc.html#label-Dilogarithm]
|
16
|
+
# 1. {Elementary operations}[link:rdoc/sf_rdoc.html#label-Elementary+Operations]
|
17
|
+
# 1. {Elliptic integrals}[link:rdoc/sf_rdoc.html#label-Elliptic+Integrals]
|
18
|
+
# 1. {Elliptic functions}[link:rdoc/sf_rdoc.html#label-Elliptic+Functions+%28Jacobi%29]
|
19
|
+
# 1. {Error functions}[link:rdoc/sf_rdoc.html#label-Error+Functions]
|
20
|
+
# 1. {Exponential functions}[link:rdoc/sf_rdoc.html#label-Exponential+Functions]
|
21
|
+
# 1. {Exponential integrals}[link:rdoc/sf_rdoc.html#label-Exponential+Integrals]
|
22
|
+
# 1. {Fermi-Dirac function}[link:rdoc/sf_rdoc.html#label-Fermi-Dirac+Functions]
|
23
|
+
# 1. {Gamma function}[link:rdoc/sf_rdoc.html#label-Gamma+Function]
|
24
|
+
# 1. {Gegenbauer functions}[link:rdoc/sf_rdoc.html#label-Gegenbauer+Functions]
|
25
|
+
# 1. {Hypergeometric functions}[link:rdoc/sf_rdoc.html#label-Hypergeometric+Functions]
|
26
|
+
# 1. {Laguerre functions}[link:rdoc/sf_rdoc.html#label-Laguerre+Functions]
|
27
|
+
# 1. {Lambert W functions}[link:rdoc/sf_rdoc.html#label-Lambert+W+Functions]
|
28
|
+
# 1. {Legendre functions and spherical harmonics}[link:rdoc/sf_rdoc.html#label-Legendre+Functions+and+Spherical+Harmonics]
|
29
|
+
# 1. {Logarithm and related functions}[link:rdoc/sf_rdoc.html#label-Logarithm+and+Related+Functions]
|
30
|
+
# 1. {Mathieu functions}[link:rdoc/sf_rdoc.html#label-Mathieu+functions]
|
31
|
+
# 1. {Power function}[link:rdoc/sf_rdoc.html#label-Power+Functions]
|
32
|
+
# 1. {Psi (digamma) function}[link:rdoc/sf_rdoc.html#label-Psi+%28Digamma%29+Function]
|
33
|
+
# 1. {Synchrotron functions}[link:rdoc/sf_rdoc.html#label-Synchrotron+Functions]
|
34
|
+
# 1. {Transport functions}[link:rdoc/sf_rdoc.html#label-Transport+Functions]
|
35
|
+
# 1. {Trigonometric functions}[link:rdoc/sf_rdoc.html#label-Trigonometric+Functions]
|
36
|
+
# 1. {Zeta functions}[link:rdoc/sf_rdoc.html#label-Zeta+Functions]
|
37
37
|
#
|
38
38
|
# == Usage
|
39
39
|
# Ruby/GSL provides all the (documented) GSL special functions as module functions
|
@@ -1613,10 +1613,10 @@
|
|
1613
1613
|
#
|
1614
1614
|
# Computes the eta function eta(s) for arbitrary s.
|
1615
1615
|
#
|
1616
|
-
# {prev}[link:poly_rdoc.html]
|
1617
|
-
# {next}[link:vector_rdoc.html]
|
1616
|
+
# {prev}[link:rdoc/poly_rdoc.html]
|
1617
|
+
# {next}[link:rdoc/vector_rdoc.html]
|
1618
1618
|
#
|
1619
|
-
# {Reference index}[link:ref_rdoc.html]
|
1619
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
1620
1620
|
# {top}[link:index.html]
|
1621
1621
|
#
|
1622
1622
|
#
|
data/rdoc/siman.rdoc
CHANGED
@@ -81,9 +81,9 @@
|
|
81
81
|
# Siman::solve(rng, x, efunc, step, metric, nil, params)
|
82
82
|
# p x
|
83
83
|
#
|
84
|
-
# {prev}[link:monte_rdoc.html]
|
85
|
-
# {next}[link:odeiv_rdoc.html]
|
84
|
+
# {prev}[link:rdoc/monte_rdoc.html]
|
85
|
+
# {next}[link:rdoc/odeiv_rdoc.html]
|
86
86
|
#
|
87
|
-
# {Reference index}[link:ref_rdoc.html]
|
87
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
88
88
|
# {top}[link:index.html]
|
89
89
|
#
|
data/rdoc/sort.rdoc
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
#
|
2
2
|
# = Sorting
|
3
3
|
# Contents:
|
4
|
-
# 1. {Heapsort of vectors}[link:sort_rdoc.html#label-Heapsort]
|
5
|
-
# 1. {Sorting vectors}[link:sort_rdoc.html#label-Sorting+vectors]
|
6
|
-
# 1. {Selecting the k smallest or largest elements}[link:sort_rdoc.html#label-Selecting+the+k+smallest+or+largest+elements]
|
4
|
+
# 1. {Heapsort of vectors}[link:rdoc/sort_rdoc.html#label-Heapsort]
|
5
|
+
# 1. {Sorting vectors}[link:rdoc/sort_rdoc.html#label-Sorting+vectors]
|
6
|
+
# 1. {Selecting the k smallest or largest elements}[link:rdoc/sort_rdoc.html#label-Selecting+the+k+smallest+or+largest+elements]
|
7
7
|
#
|
8
8
|
# == Heapsort
|
9
9
|
#
|
@@ -85,10 +85,10 @@
|
|
85
85
|
# <tt>k</tt> must be less than or equal to the length of the vector.
|
86
86
|
#
|
87
87
|
#
|
88
|
-
# {prev}[link:combi_rdoc.html]
|
89
|
-
# {next}[link:blas_rdoc.html]
|
88
|
+
# {prev}[link:rdoc/combi_rdoc.html]
|
89
|
+
# {next}[link:rdoc/blas_rdoc.html]
|
90
90
|
#
|
91
|
-
# {Reference index}[link:ref_rdoc.html]
|
91
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
92
92
|
# {top}[link:index.html]
|
93
93
|
#
|
94
94
|
#
|
data/rdoc/start.rdoc
CHANGED
@@ -8,9 +8,9 @@
|
|
8
8
|
# written for very high level languages. The source code is distributed
|
9
9
|
# under the GNU General Public License.
|
10
10
|
#
|
11
|
-
# The {Ruby/GSL}[https://
|
11
|
+
# The {Ruby/GSL}[https://sciruby.github.com/rb-gsl] is Ruby
|
12
12
|
# bindings for GSL. This provides higher-level interfaces to the GSL functions.
|
13
|
-
# See {here}[link:use_rdoc.html] for installation. To use the library , just put at the head of your scripts <tt>require("gsl")</tt>, or type it from the command line of <tt>irb</tt>.
|
13
|
+
# See {here}[link:rdoc/use_rdoc.html] for installation. To use the library , just put at the head of your scripts <tt>require("gsl")</tt>, or type it from the command line of <tt>irb</tt>.
|
14
14
|
#
|
15
15
|
#
|
16
16
|
#
|
data/rdoc/stats.rdoc
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
#
|
2
2
|
# = Statistics
|
3
|
-
# 1. {Mean, Standard Deviation and Variance}[link:stats_rdoc.html#label-Mean%2C+Standard+Deviation+and+Variance]
|
4
|
-
# 1. {Absolute deviation}[link:stats_rdoc.html#label-Absolute+deviation]
|
5
|
-
# 1. {Higher moments (skewness and kurtosis)}[link:stats_rdoc.html#label-Higher+moments+%28skewness+and+kurtosis%29]
|
6
|
-
# 1. {Autocorrelation}[link:stats_rdoc.html#label-Autocorrelation]
|
7
|
-
# 1. {Covariance}[link:stats_rdoc.html#label-Covariance]
|
8
|
-
# 1. {Correlation}[link:stats_rdoc.html#label-Correlation]
|
9
|
-
# 1. {Weighted samples}[link:stats_rdoc.html#label-Weighted+samples]
|
10
|
-
# 1. {Maximum and minimum values}[link:stats_rdoc.html#label-Maximum+and+Minimum+values]
|
11
|
-
# 1. {Median and percentiles}[link:stats_rdoc.html#label-Median+and+Percentiles]
|
12
|
-
# 1. {Examples}[link:stats_rdoc.html#label-Example]
|
3
|
+
# 1. {Mean, Standard Deviation and Variance}[link:rdoc/stats_rdoc.html#label-Mean%2C+Standard+Deviation+and+Variance]
|
4
|
+
# 1. {Absolute deviation}[link:rdoc/stats_rdoc.html#label-Absolute+deviation]
|
5
|
+
# 1. {Higher moments (skewness and kurtosis)}[link:rdoc/stats_rdoc.html#label-Higher+moments+%28skewness+and+kurtosis%29]
|
6
|
+
# 1. {Autocorrelation}[link:rdoc/stats_rdoc.html#label-Autocorrelation]
|
7
|
+
# 1. {Covariance}[link:rdoc/stats_rdoc.html#label-Covariance]
|
8
|
+
# 1. {Correlation}[link:rdoc/stats_rdoc.html#label-Correlation]
|
9
|
+
# 1. {Weighted samples}[link:rdoc/stats_rdoc.html#label-Weighted+samples]
|
10
|
+
# 1. {Maximum and minimum values}[link:rdoc/stats_rdoc.html#label-Maximum+and+Minimum+values]
|
11
|
+
# 1. {Median and percentiles}[link:rdoc/stats_rdoc.html#label-Median+and+Percentiles]
|
12
|
+
# 1. {Examples}[link:rdoc/stats_rdoc.html#label-Example]
|
13
13
|
#
|
14
14
|
# == Mean, Standard Deviation and Variance
|
15
15
|
#
|
@@ -211,9 +211,9 @@
|
|
211
211
|
# printf("The largest value is %g\n", largest);
|
212
212
|
# printf("The smallest value is %g\n", smallest);
|
213
213
|
#
|
214
|
-
# {prev}[link:randist_rdoc.html]
|
215
|
-
# {next}[link:hist_rdoc.html]
|
214
|
+
# {prev}[link:rdoc/randist_rdoc.html]
|
215
|
+
# {next}[link:rdoc/hist_rdoc.html]
|
216
216
|
#
|
217
|
-
# {Reference index}[link:ref_rdoc.html]
|
217
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
218
218
|
# {top}[link:index.html]
|
219
219
|
#
|
data/rdoc/sum.rdoc
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# = Series Acceleration
|
3
3
|
# In Ruby/GSL, series acceleration functions are provided as singleton methods
|
4
4
|
# for the <tt>GSL::Sum::Levin_u, Levin_utrunc</tt> classes, and methods of
|
5
|
-
# an object of the {GSL::Vector}[link:vector_rdoc.html] class.
|
5
|
+
# an object of the {GSL::Vector}[link:rdoc/vector_rdoc.html] class.
|
6
6
|
#
|
7
7
|
# == Modules and classes
|
8
8
|
# * GSL
|
@@ -55,10 +55,10 @@
|
|
55
55
|
# <tt>sum_plain</tt> is the term-by-term sum, and <tt>terms_used</tt> is the number of
|
56
56
|
# terms actually used in the calculation.
|
57
57
|
#
|
58
|
-
# {prev}[link:cheb_rdoc.html]
|
59
|
-
# {next}[link:dht_rdoc.html]
|
58
|
+
# {prev}[link:rdoc/cheb_rdoc.html]
|
59
|
+
# {next}[link:rdoc/dht_rdoc.html]
|
60
60
|
#
|
61
|
-
# {Reference index}[link:ref_rdoc.html]
|
61
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
62
62
|
# {top}[link:index.html]
|
63
63
|
#
|
64
64
|
#
|