gsl 1.15.3 → 1.16.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +12 -0
- data/.travis.yml +24 -0
- data/AUTHORS +10 -2
- data/COPYING +341 -339
- data/ChangeLog +612 -554
- data/Gemfile +4 -0
- data/README.md +77 -0
- data/Rakefile +14 -93
- 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/{alf.c → gsl_native/alf.c} +10 -10
- data/ext/{array.c → gsl_native/array.c} +70 -159
- data/ext/{array_complex.c → gsl_native/array_complex.c} +63 -66
- data/ext/{blas.c → gsl_native/blas.c} +2 -3
- data/ext/{blas1.c → gsl_native/blas1.c} +35 -36
- data/ext/{blas2.c → gsl_native/blas2.c} +57 -62
- data/ext/{blas3.c → gsl_native/blas3.c} +57 -58
- data/ext/{block.c → gsl_native/block.c} +14 -18
- data/ext/{block_source.c → gsl_native/block_source.h} +110 -112
- data/ext/gsl_native/bspline.c +122 -0
- data/ext/{bundle.c → gsl_native/bundle.c} +0 -0
- data/ext/{cdf.c → gsl_native/cdf.c} +79 -93
- data/ext/{cheb.c → gsl_native/cheb.c} +78 -89
- data/ext/{combination.c → gsl_native/combination.c} +11 -19
- data/ext/{common.c → gsl_native/common.c} +9 -41
- data/ext/{complex.c → gsl_native/complex.c} +116 -118
- data/ext/gsl_native/const.c +331 -0
- data/ext/{const_additional.c → gsl_native/const_additional.c} +13 -34
- data/ext/gsl_native/cqp.c +283 -0
- data/ext/{deriv.c → gsl_native/deriv.c} +25 -33
- data/ext/{dht.c → gsl_native/dht.c} +23 -31
- data/ext/{diff.c → gsl_native/diff.c} +26 -28
- data/ext/{dirac.c → gsl_native/dirac.c} +45 -46
- data/ext/{eigen.c → gsl_native/eigen.c} +1044 -1095
- data/ext/{error.c → gsl_native/error.c} +18 -18
- data/ext/gsl_native/extconf.rb +118 -0
- data/ext/{fft.c → gsl_native/fft.c} +197 -204
- data/ext/{fit.c → gsl_native/fit.c} +17 -18
- data/ext/gsl_native/fresnel.c +312 -0
- data/ext/{function.c → gsl_native/function.c} +37 -43
- data/ext/{geometry.c → gsl_native/geometry.c} +16 -16
- data/ext/{graph.c → gsl_native/graph.c} +39 -89
- data/ext/{gsl.c → gsl_native/gsl.c} +12 -33
- data/ext/{gsl_narray.c → gsl_native/gsl_narray.c} +20 -30
- data/ext/{histogram.c → gsl_native/histogram.c} +133 -160
- data/ext/{histogram2d.c → gsl_native/histogram2d.c} +78 -104
- data/ext/{histogram3d.c → gsl_native/histogram3d.c} +76 -76
- data/ext/{histogram3d_source.c → gsl_native/histogram3d_source.c} +196 -197
- data/ext/{histogram_find.c → gsl_native/histogram_find.c} +32 -34
- data/ext/{histogram_oper.c → gsl_native/histogram_oper.c} +43 -52
- data/ext/{ieee.c → gsl_native/ieee.c} +9 -21
- data/{include → ext/gsl_native/include}/rb_gsl.h +4 -26
- data/{include → ext/gsl_native/include}/rb_gsl_array.h +15 -39
- data/{include → ext/gsl_native/include}/rb_gsl_cheb.h +0 -2
- data/{include → ext/gsl_native/include}/rb_gsl_common.h +61 -61
- data/{include → ext/gsl_native/include}/rb_gsl_complex.h +1 -1
- data/{include → ext/gsl_native/include}/rb_gsl_const.h +0 -6
- data/ext/gsl_native/include/rb_gsl_dirac.h +6 -0
- data/{include → ext/gsl_native/include}/rb_gsl_eigen.h +1 -1
- data/{include → ext/gsl_native/include}/rb_gsl_fft.h +0 -13
- data/{include → ext/gsl_native/include}/rb_gsl_fit.h +0 -2
- data/{include → ext/gsl_native/include}/rb_gsl_function.h +0 -4
- data/{include → ext/gsl_native/include}/rb_gsl_graph.h +2 -4
- data/{include → ext/gsl_native/include}/rb_gsl_histogram.h +8 -8
- data/{include → ext/gsl_native/include}/rb_gsl_histogram3d.h +50 -50
- data/{include → ext/gsl_native/include}/rb_gsl_integration.h +1 -1
- data/{include → ext/gsl_native/include}/rb_gsl_interp.h +0 -5
- data/{include → ext/gsl_native/include}/rb_gsl_linalg.h +2 -6
- data/{include → ext/gsl_native/include}/rb_gsl_math.h +0 -6
- data/{include → ext/gsl_native/include}/rb_gsl_odeiv.h +0 -3
- data/{include → ext/gsl_native/include}/rb_gsl_poly.h +3 -7
- data/{include → ext/gsl_native/include}/rb_gsl_rational.h +1 -8
- data/{include → ext/gsl_native/include}/rb_gsl_rng.h +0 -1
- data/{include → ext/gsl_native/include}/rb_gsl_root.h +1 -1
- data/{include → ext/gsl_native/include}/rb_gsl_sf.h +39 -48
- data/{include → ext/gsl_native/include}/rb_gsl_statistics.h +1 -1
- data/{include → ext/gsl_native/include}/rb_gsl_tensor.h +0 -2
- data/{include → ext/gsl_native/include}/rb_gsl_with_narray.h +3 -1
- data/{include → ext/gsl_native/include}/templates_off.h +0 -0
- data/{include → ext/gsl_native/include}/templates_on.h +1 -1
- data/ext/{integration.c → gsl_native/integration.c} +164 -189
- data/ext/{interp.c → gsl_native/interp.c} +25 -38
- data/ext/gsl_native/jacobi.c +733 -0
- data/ext/{linalg.c → gsl_native/linalg.c} +462 -589
- data/ext/{linalg_complex.c → gsl_native/linalg_complex.c} +93 -106
- data/ext/{math.c → gsl_native/math.c} +48 -67
- data/ext/{matrix.c → gsl_native/matrix.c} +13 -16
- data/ext/{matrix_complex.c → gsl_native/matrix_complex.c} +119 -123
- data/ext/{matrix_double.c → gsl_native/matrix_double.c} +79 -82
- data/ext/{matrix_int.c → gsl_native/matrix_int.c} +53 -54
- data/ext/{matrix_source.c → gsl_native/matrix_source.h} +292 -318
- data/ext/{min.c → gsl_native/min.c} +45 -76
- data/ext/{monte.c → gsl_native/monte.c} +50 -64
- data/ext/{multifit.c → gsl_native/multifit.c} +142 -151
- data/ext/{multimin.c → gsl_native/multimin.c} +64 -92
- data/ext/{multimin_fsdf.c → gsl_native/multimin_fsdf.c} +16 -16
- data/ext/{multiroots.c → gsl_native/multiroots.c} +73 -76
- data/ext/{multiset.c → gsl_native/multiset.c} +4 -8
- data/ext/{ndlinear.c → gsl_native/ndlinear.c} +320 -321
- data/ext/{nmf.c → gsl_native/nmf.c} +11 -11
- data/ext/{nmf_wrap.c → gsl_native/nmf_wrap.c} +1 -1
- data/ext/{ntuple.c → gsl_native/ntuple.c} +23 -23
- data/ext/{odeiv.c → gsl_native/odeiv.c} +101 -116
- data/ext/gsl_native/ool.c +879 -0
- data/ext/{permutation.c → gsl_native/permutation.c} +39 -37
- data/ext/{poly.c → gsl_native/poly.c} +10 -13
- data/ext/{poly2.c → gsl_native/poly2.c} +16 -16
- data/ext/{poly_source.c → gsl_native/poly_source.h} +249 -293
- data/ext/{qrng.c → gsl_native/qrng.c} +9 -20
- data/ext/{randist.c → gsl_native/randist.c} +222 -247
- data/ext/{rational.c → gsl_native/rational.c} +12 -12
- data/ext/{rng.c → gsl_native/rng.c} +30 -47
- data/ext/{root.c → gsl_native/root.c} +47 -48
- data/ext/{sf.c → gsl_native/sf.c} +196 -244
- data/ext/{sf_airy.c → gsl_native/sf_airy.c} +2 -2
- data/ext/{sf_bessel.c → gsl_native/sf_bessel.c} +7 -7
- data/ext/{sf_clausen.c → gsl_native/sf_clausen.c} +1 -1
- data/ext/{sf_coulomb.c → gsl_native/sf_coulomb.c} +40 -40
- data/ext/{sf_coupling.c → gsl_native/sf_coupling.c} +30 -30
- data/ext/{sf_dawson.c → gsl_native/sf_dawson.c} +1 -1
- data/ext/{sf_debye.c → gsl_native/sf_debye.c} +1 -10
- data/ext/{sf_dilog.c → gsl_native/sf_dilog.c} +1 -1
- data/ext/{sf_elementary.c → gsl_native/sf_elementary.c} +3 -3
- data/ext/{sf_ellint.c → gsl_native/sf_ellint.c} +43 -43
- data/ext/{sf_elljac.c → gsl_native/sf_elljac.c} +3 -3
- data/ext/{sf_erfc.c → gsl_native/sf_erfc.c} +1 -5
- data/ext/{sf_exp.c → gsl_native/sf_exp.c} +3 -3
- data/ext/{sf_expint.c → gsl_native/sf_expint.c} +2 -12
- data/ext/{sf_fermi_dirac.c → gsl_native/sf_fermi_dirac.c} +1 -1
- data/ext/{sf_gamma.c → gsl_native/sf_gamma.c} +2 -6
- data/ext/{sf_gegenbauer.c → gsl_native/sf_gegenbauer.c} +1 -1
- data/ext/{sf_hyperg.c → gsl_native/sf_hyperg.c} +1 -1
- data/ext/{sf_laguerre.c → gsl_native/sf_laguerre.c} +4 -4
- data/ext/{sf_lambert.c → gsl_native/sf_lambert.c} +1 -1
- data/ext/{sf_legendre.c → gsl_native/sf_legendre.c} +1 -1
- data/ext/{sf_log.c → gsl_native/sf_log.c} +4 -4
- data/ext/gsl_native/sf_mathieu.c +235 -0
- data/ext/{sf_power.c → gsl_native/sf_power.c} +1 -1
- data/ext/{sf_psi.c → gsl_native/sf_psi.c} +3 -12
- data/ext/{sf_synchrotron.c → gsl_native/sf_synchrotron.c} +1 -1
- data/ext/{sf_transport.c → gsl_native/sf_transport.c} +1 -1
- data/ext/{sf_trigonometric.c → gsl_native/sf_trigonometric.c} +4 -4
- data/ext/{sf_zeta.c → gsl_native/sf_zeta.c} +1 -5
- data/ext/{signal.c → gsl_native/signal.c} +63 -68
- data/ext/{siman.c → gsl_native/siman.c} +45 -49
- data/ext/{sort.c → gsl_native/sort.c} +6 -7
- data/ext/{spline.c → gsl_native/spline.c} +28 -46
- data/ext/{stats.c → gsl_native/stats.c} +105 -118
- data/ext/{sum.c → gsl_native/sum.c} +34 -34
- data/ext/{tamu_anova.c → gsl_native/tamu_anova.c} +1 -1
- data/ext/{tensor.c → gsl_native/tensor.c} +8 -11
- data/ext/{tensor_source.c → gsl_native/tensor_source.h} +147 -148
- data/ext/{vector.c → gsl_native/vector.c} +11 -14
- data/ext/{vector_complex.c → gsl_native/vector_complex.c} +179 -184
- data/ext/{vector_double.c → gsl_native/vector_double.c} +178 -183
- data/ext/{vector_int.c → gsl_native/vector_int.c} +27 -29
- data/ext/{vector_source.c → gsl_native/vector_source.h} +428 -443
- data/ext/{wavelet.c → gsl_native/wavelet.c} +224 -246
- data/gsl.gemspec +29 -0
- data/lib/gsl.rb +8 -3
- data/lib/gsl/gnuplot.rb +3 -3
- data/lib/gsl/oper.rb +35 -60
- data/lib/gsl/version.rb +3 -0
- data/lib/rbgsl.rb +1 -3
- data/rdoc/alf.rdoc +5 -5
- data/rdoc/blas.rdoc +9 -9
- data/rdoc/bspline.rdoc +17 -17
- data/rdoc/changes.rdoc +4 -9
- data/rdoc/cheb.rdoc +25 -25
- data/rdoc/cholesky_complex.rdoc +21 -21
- data/rdoc/combi.rdoc +37 -37
- data/rdoc/complex.rdoc +22 -22
- data/rdoc/const.rdoc +47 -47
- data/rdoc/dht.rdoc +49 -49
- data/rdoc/diff.rdoc +42 -42
- data/rdoc/ehandling.rdoc +6 -6
- data/rdoc/eigen.rdoc +153 -153
- data/rdoc/fft.rdoc +146 -146
- data/rdoc/fit.rdoc +109 -109
- data/rdoc/function.rdoc +11 -11
- data/rdoc/graph.rdoc +17 -17
- data/rdoc/hist.rdoc +103 -103
- data/rdoc/hist2d.rdoc +42 -42
- data/rdoc/hist3d.rdoc +9 -9
- data/rdoc/integration.rdoc +110 -110
- data/rdoc/interp.rdoc +71 -71
- data/rdoc/intro.rdoc +8 -8
- data/rdoc/linalg.rdoc +188 -188
- data/rdoc/linalg_complex.rdoc +1 -1
- data/rdoc/math.rdoc +58 -58
- data/rdoc/matrix.rdoc +275 -275
- data/rdoc/min.rdoc +57 -57
- data/rdoc/monte.rdoc +22 -22
- data/rdoc/multimin.rdoc +95 -95
- data/rdoc/multiroot.rdoc +80 -80
- data/rdoc/narray.rdoc +32 -32
- data/rdoc/ndlinear.rdoc +54 -54
- data/rdoc/nonlinearfit.rdoc +100 -100
- data/rdoc/ntuple.rdoc +31 -31
- data/rdoc/odeiv.rdoc +88 -88
- data/rdoc/perm.rdoc +90 -90
- data/rdoc/poly.rdoc +66 -66
- data/rdoc/qrng.rdoc +21 -21
- data/rdoc/randist.rdoc +82 -82
- data/rdoc/ref.rdoc +57 -57
- data/rdoc/rng.rdoc +85 -85
- data/rdoc/roots.rdoc +57 -57
- data/rdoc/sf.rdoc +428 -428
- data/rdoc/siman.rdoc +19 -19
- data/rdoc/sort.rdoc +30 -30
- data/rdoc/start.rdoc +8 -8
- data/rdoc/stats.rdoc +52 -52
- data/rdoc/sum.rdoc +12 -12
- data/rdoc/tensor.rdoc +31 -31
- data/rdoc/tut.rdoc +1 -1
- data/rdoc/use.rdoc +39 -39
- data/rdoc/vector.rdoc +188 -188
- data/rdoc/vector_complex.rdoc +24 -24
- data/rdoc/wavelet.rdoc +46 -46
- data/test/gsl/blas_test.rb +79 -0
- data/test/gsl/bspline_test.rb +63 -0
- data/test/gsl/cdf_test.rb +1512 -0
- data/test/gsl/cheb_test.rb +80 -0
- data/test/gsl/combination_test.rb +100 -0
- data/test/gsl/complex_test.rb +20 -0
- data/test/gsl/const_test.rb +29 -0
- data/test/gsl/deriv_test.rb +62 -0
- data/test/gsl/dht_test.rb +79 -0
- data/test/gsl/diff_test.rb +53 -0
- data/test/gsl/eigen_test.rb +563 -0
- data/test/gsl/err_test.rb +23 -0
- data/test/gsl/fit_test.rb +101 -0
- data/test/gsl/histo_test.rb +14 -0
- data/test/gsl/index_test.rb +61 -0
- data/test/gsl/integration_test.rb +274 -0
- data/test/gsl/interp_test.rb +27 -0
- data/test/gsl/linalg_test.rb +463 -0
- data/test/gsl/matrix_nmf_test.rb +37 -0
- data/test/gsl/matrix_test.rb +98 -0
- data/test/gsl/min_test.rb +89 -0
- data/test/gsl/monte_test.rb +77 -0
- data/test/gsl/multifit_test.rb +753 -0
- data/test/gsl/multimin_test.rb +157 -0
- data/test/gsl/multiroot_test.rb +135 -0
- data/test/gsl/multiset_test.rb +52 -0
- data/test/gsl/odeiv_test.rb +275 -0
- data/test/gsl/oper_test.rb +98 -0
- data/test/gsl/poly_test.rb +338 -0
- data/test/gsl/qrng_test.rb +94 -0
- data/test/gsl/quartic_test.rb +28 -0
- data/test/gsl/randist_test.rb +122 -0
- data/test/gsl/rng_test.rb +303 -0
- data/test/gsl/roots_test.rb +78 -0
- data/test/gsl/sf_test.rb +2079 -0
- data/test/gsl/stats_test.rb +122 -0
- data/test/gsl/sum_test.rb +69 -0
- data/test/gsl/tensor_test.rb +396 -0
- data/test/gsl/vector_test.rb +223 -0
- data/test/gsl/wavelet_test.rb +130 -0
- data/test/gsl_test.rb +321 -0
- data/test/test_helper.rb +42 -0
- data/uncrustify.cfg +1693 -0
- metadata +337 -378
- data/README +0 -32
- data/VERSION +0 -1
- data/ext/bspline.c +0 -130
- data/ext/const.c +0 -673
- data/ext/cqp.c +0 -283
- data/ext/extconf.rb +0 -295
- data/ext/fcmp.c +0 -66
- data/ext/fresnel.c +0 -312
- data/ext/jacobi.c +0 -739
- data/ext/ool.c +0 -879
- data/ext/oper_complex_source.c +0 -253
- data/ext/sf_mathieu.c +0 -238
- data/include/rb_gsl_config.h +0 -62
- data/include/rb_gsl_dirac.h +0 -13
- data/rdoc/index.rdoc +0 -62
- data/rdoc/rngextra.rdoc +0 -11
- data/rdoc/screenshot.rdoc +0 -40
- data/setup.rb +0 -1585
- data/tests/blas/amax.rb +0 -14
- data/tests/blas/asum.rb +0 -16
- data/tests/blas/axpy.rb +0 -25
- data/tests/blas/copy.rb +0 -23
- data/tests/blas/dot.rb +0 -23
- data/tests/bspline.rb +0 -53
- data/tests/cdf.rb +0 -1388
- data/tests/cheb.rb +0 -112
- data/tests/combination.rb +0 -123
- data/tests/complex.rb +0 -17
- data/tests/const.rb +0 -24
- data/tests/deriv.rb +0 -85
- data/tests/dht/dht1.rb +0 -17
- data/tests/dht/dht2.rb +0 -23
- data/tests/dht/dht3.rb +0 -23
- data/tests/dht/dht4.rb +0 -23
- data/tests/diff.rb +0 -78
- data/tests/eigen/eigen.rb +0 -220
- data/tests/eigen/gen.rb +0 -105
- data/tests/eigen/genherm.rb +0 -66
- data/tests/eigen/gensymm.rb +0 -68
- data/tests/eigen/nonsymm.rb +0 -53
- data/tests/eigen/nonsymmv.rb +0 -53
- data/tests/eigen/symm-herm.rb +0 -74
- data/tests/err.rb +0 -58
- data/tests/fit.rb +0 -124
- data/tests/gsl_test.rb +0 -118
- data/tests/gsl_test2.rb +0 -110
- data/tests/histo.rb +0 -12
- data/tests/integration/integration1.rb +0 -72
- data/tests/integration/integration2.rb +0 -71
- data/tests/integration/integration3.rb +0 -71
- data/tests/integration/integration4.rb +0 -71
- data/tests/interp.rb +0 -45
- data/tests/linalg/HH.rb +0 -64
- data/tests/linalg/LU.rb +0 -47
- data/tests/linalg/QR.rb +0 -77
- data/tests/linalg/SV.rb +0 -24
- data/tests/linalg/TDN.rb +0 -116
- data/tests/linalg/TDS.rb +0 -122
- data/tests/linalg/bidiag.rb +0 -73
- data/tests/linalg/cholesky.rb +0 -20
- data/tests/linalg/linalg.rb +0 -158
- data/tests/matrix/matrix_complex_test.rb +0 -36
- data/tests/matrix/matrix_nmf_test.rb +0 -39
- data/tests/matrix/matrix_test.rb +0 -48
- data/tests/min.rb +0 -99
- data/tests/monte/miser.rb +0 -31
- data/tests/monte/vegas.rb +0 -45
- data/tests/multifit/test_2dgauss.rb +0 -112
- data/tests/multifit/test_brown.rb +0 -90
- data/tests/multifit/test_enso.rb +0 -246
- data/tests/multifit/test_filip.rb +0 -155
- data/tests/multifit/test_gauss.rb +0 -97
- data/tests/multifit/test_longley.rb +0 -110
- data/tests/multifit/test_multifit.rb +0 -52
- data/tests/multimin.rb +0 -139
- data/tests/multiroot.rb +0 -131
- data/tests/multiset.rb +0 -52
- data/tests/narray/blas_dnrm2.rb +0 -20
- data/tests/odeiv.rb +0 -353
- data/tests/poly/poly.rb +0 -290
- data/tests/poly/special.rb +0 -65
- data/tests/qrng.rb +0 -131
- data/tests/quartic.rb +0 -29
- data/tests/randist.rb +0 -134
- data/tests/rng.rb +0 -305
- data/tests/roots.rb +0 -76
- data/tests/run-test.sh +0 -17
- data/tests/sf/gsl_test_sf.rb +0 -249
- data/tests/sf/test_airy.rb +0 -83
- data/tests/sf/test_bessel.rb +0 -306
- data/tests/sf/test_coulomb.rb +0 -17
- data/tests/sf/test_dilog.rb +0 -25
- data/tests/sf/test_gamma.rb +0 -209
- data/tests/sf/test_hyperg.rb +0 -356
- data/tests/sf/test_legendre.rb +0 -227
- data/tests/sf/test_mathieu.rb +0 -59
- data/tests/sf/test_mode.rb +0 -19
- data/tests/sf/test_sf.rb +0 -839
- data/tests/stats.rb +0 -174
- data/tests/stats_mt.rb +0 -16
- data/tests/sum.rb +0 -98
- data/tests/sys.rb +0 -323
- data/tests/tensor.rb +0 -419
- data/tests/vector/vector_complex_test.rb +0 -101
- data/tests/vector/vector_test.rb +0 -141
- data/tests/wavelet.rb +0 -142
data/rdoc/cholesky_complex.rdoc
CHANGED
@@ -1,46 +1,46 @@
|
|
1
1
|
#
|
2
2
|
# === Cholesky decomposition (>= GSL-1.10)
|
3
|
-
# A symmetric, positive definite square matrix <tt>A</tt> has
|
4
|
-
# a Cholesky decomposition into a product of a lower triangular matrix
|
3
|
+
# A symmetric, positive definite square matrix <tt>A</tt> has
|
4
|
+
# a Cholesky decomposition into a product of a lower triangular matrix
|
5
5
|
# <tt>L</tt> and its transpose <tt>L^T</tt>.
|
6
|
-
# This is sometimes referred to as taking the square-root of a matrix.
|
7
|
-
# The Cholesky decomposition can only be carried out when all the eigenvalues
|
8
|
-
# of the matrix are positive. This decomposition can be used to convert the
|
9
|
-
# linear system <tt>A x = b</tt> into a pair of triangular systems
|
6
|
+
# This is sometimes referred to as taking the square-root of a matrix.
|
7
|
+
# The Cholesky decomposition can only be carried out when all the eigenvalues
|
8
|
+
# of the matrix are positive. This decomposition can be used to convert the
|
9
|
+
# linear system <tt>A x = b</tt> into a pair of triangular systems
|
10
10
|
# <tt>L y = b, L^T x = y</tt>,
|
11
|
-
# which can be solved by forward and back-substitution.
|
11
|
+
# which can be solved by forward and back-substitution.
|
12
12
|
#
|
13
13
|
# ---
|
14
14
|
# * GSL::Linalg::Complex::Cholesky::decomp(A)
|
15
15
|
# * GSL::Linalg::Complex::cholesky_decomp(A)
|
16
16
|
#
|
17
|
-
# Factorize the positive-definite square matrix <tt>A</tt> into the
|
17
|
+
# Factorize the positive-definite square matrix <tt>A</tt> into the
|
18
18
|
# Cholesky decomposition <tt>A = L L^H</tt>.
|
19
|
-
# On input only the diagonal and lower-triangular part of the matrix <tt>A</tt>
|
19
|
+
# On input only the diagonal and lower-triangular part of the matrix <tt>A</tt>
|
20
20
|
# are needed. The diagonal and lower triangular part of the returned matrix
|
21
|
-
# contain the matrix <tt>L</tt>. The upper triangular part of the
|
21
|
+
# contain the matrix <tt>L</tt>. The upper triangular part of the
|
22
22
|
# returned matrix contains L^T, and
|
23
|
-
# the diagonal terms being identical for both L and L^T.
|
24
|
-
# If the input matrix is not positive-definite then the decomposition
|
25
|
-
# will fail, returning the error code <tt>GSL::EDOM</tt>.
|
23
|
+
# the diagonal terms being identical for both L and L^T.
|
24
|
+
# If the input matrix is not positive-definite then the decomposition
|
25
|
+
# will fail, returning the error code <tt>GSL::EDOM</tt>.
|
26
26
|
#
|
27
27
|
# ---
|
28
28
|
# * GSL::Linalg::Complex::Cholesky::solve(chol, b, x)
|
29
29
|
# * GSL::Linalg::Complex::cholesky_solve(chol, b, x)
|
30
30
|
#
|
31
|
-
# Solve the system <tt>A x = b</tt> using the Cholesky decomposition
|
32
|
-
# of <tt>A</tt> into the matrix <tt>chol</tt> given by
|
31
|
+
# Solve the system <tt>A x = b</tt> using the Cholesky decomposition
|
32
|
+
# of <tt>A</tt> into the matrix <tt>chol</tt> given by
|
33
33
|
# <tt>GSL::Linalg::Complex::Cholesky::decomp</tt>.
|
34
34
|
#
|
35
35
|
# ---
|
36
36
|
# * GSL::Linalg::Complex::Cholesky::svx(chol, x)
|
37
37
|
# * GSL::Linalg::Complex::cholesky_svx(chol, x)
|
38
38
|
#
|
39
|
-
# Solve the system <tt>A x = b</tt> in-place using the Cholesky decomposition
|
40
|
-
# of <tt>A</tt> into the matrix <tt>chol</tt> given by
|
41
|
-
# <tt>GSL::Linalg::Complex::Cholesky::decomp</tt>. On input <tt>x</tt>
|
42
|
-
# should contain the right-hand side <tt>b</tt>,
|
43
|
-
# which is replaced by the solution on output.
|
39
|
+
# Solve the system <tt>A x = b</tt> in-place using the Cholesky decomposition
|
40
|
+
# of <tt>A</tt> into the matrix <tt>chol</tt> given by
|
41
|
+
# <tt>GSL::Linalg::Complex::Cholesky::decomp</tt>. On input <tt>x</tt>
|
42
|
+
# should contain the right-hand side <tt>b</tt>,
|
43
|
+
# which is replaced by the solution on output.
|
44
44
|
#
|
45
|
-
# {back}[link:
|
45
|
+
# {back}[link:rdoc/linalg_rdoc.html]
|
46
46
|
#
|
data/rdoc/combi.rdoc
CHANGED
@@ -1,50 +1,50 @@
|
|
1
1
|
#
|
2
2
|
# = Combinations
|
3
3
|
# Contents:
|
4
|
-
# 1. {Combination allocation}[link:
|
5
|
-
# 1. {Methods}[link:
|
6
|
-
# 1. {Accessing combination elements}[link:
|
7
|
-
# 1. {Combination properties}[link:
|
8
|
-
# 1. {Combination functions}[link:
|
9
|
-
# 1. {Reading and writing combinations}[link:
|
10
|
-
#
|
11
|
-
# ==
|
4
|
+
# 1. {Combination allocation}[link:rdoc/combi_rdoc.html#label-Combination+allocation]
|
5
|
+
# 1. {Methods}[link:rdoc/combi_rdoc.html#label-Methods]
|
6
|
+
# 1. {Accessing combination elements}[link:rdoc/combi_rdoc.html#label-Accessing+combination+elements]
|
7
|
+
# 1. {Combination properties}[link:rdoc/combi_rdoc.html#label-Combination+properties]
|
8
|
+
# 1. {Combination functions}[link:rdoc/combi_rdoc.html#label-Combination+functions]
|
9
|
+
# 1. {Reading and writing combinations}[link:rdoc/combi_rdoc.html#label-Reading+and+writing+combinations]
|
10
|
+
#
|
11
|
+
# == Combination allocation
|
12
12
|
# ---
|
13
13
|
# * GSL::Combination.alloc(n, k)
|
14
14
|
#
|
15
|
-
# These create a new combination with parameters <tt>n, k</tt>.
|
16
|
-
# The combination is not initialized and its elements are undefined.
|
17
|
-
# Use the method <tt>GSL::Combination.calloc</tt> if you want to create a
|
18
|
-
# combination which is initialized to the lexicographically first combination.
|
15
|
+
# These create a new combination with parameters <tt>n, k</tt>.
|
16
|
+
# The combination is not initialized and its elements are undefined.
|
17
|
+
# Use the method <tt>GSL::Combination.calloc</tt> if you want to create a
|
18
|
+
# combination which is initialized to the lexicographically first combination.
|
19
19
|
#
|
20
20
|
# ---
|
21
21
|
# * GSL::Combination.calloc(n, k)
|
22
22
|
#
|
23
|
-
# This creates a new combination with parameters <tt>n, k</tt> and initializes
|
24
|
-
# it to the lexicographically first combination.
|
23
|
+
# This creates a new combination with parameters <tt>n, k</tt> and initializes
|
24
|
+
# it to the lexicographically first combination.
|
25
25
|
#
|
26
|
-
# ==
|
26
|
+
# == Methods
|
27
27
|
#
|
28
28
|
# ---
|
29
29
|
# * GSL::Combination#init_first
|
30
30
|
#
|
31
|
-
# This method initializes the combination <tt>self</tt> to the lexicographically
|
31
|
+
# This method initializes the combination <tt>self</tt> to the lexicographically
|
32
32
|
# first combination, i.e. (0,1,2,...,k-1).
|
33
33
|
#
|
34
34
|
# ---
|
35
35
|
# * GSL::Combination#init_last
|
36
36
|
#
|
37
|
-
# This method initializes the combination <tt>self</tt> to the lexicographically last
|
37
|
+
# This method initializes the combination <tt>self</tt> to the lexicographically last
|
38
38
|
# combination, i.e. (n-k,n-k+1,...,n-1).
|
39
39
|
#
|
40
|
-
# ===
|
40
|
+
# === Accessing combination elements
|
41
41
|
# ---
|
42
42
|
# * GSL::Combination#get(i)
|
43
|
-
# * GSL::Combination#[i]
|
43
|
+
# * \GSL::Combination#[i]
|
44
44
|
#
|
45
|
-
# This returns the value of the <tt>i</tt>-th element of the combination <tt>self</tt>.
|
45
|
+
# This returns the value of the <tt>i</tt>-th element of the combination <tt>self</tt>.
|
46
46
|
#
|
47
|
-
# ===
|
47
|
+
# === Combination properties
|
48
48
|
# ---
|
49
49
|
# * GSL::Combination#n
|
50
50
|
#
|
@@ -63,8 +63,8 @@
|
|
63
63
|
# ---
|
64
64
|
# * GSL::Combination#valid
|
65
65
|
#
|
66
|
-
# This method checks that the combination <tt>self</tt> is valid.
|
67
|
-
# The <tt>k</tt> elements should contain numbers from range 0 .. n-1,
|
66
|
+
# This method checks that the combination <tt>self</tt> is valid.
|
67
|
+
# The <tt>k</tt> elements should contain numbers from range 0 .. n-1,
|
68
68
|
# each number at most once. The numbers have to be in increasing order.
|
69
69
|
#
|
70
70
|
# ---
|
@@ -72,25 +72,25 @@
|
|
72
72
|
#
|
73
73
|
# Thie returns true if the combination is valid, and false otherwise.
|
74
74
|
#
|
75
|
-
# ===
|
75
|
+
# === Combination functions
|
76
76
|
# ---
|
77
77
|
# * GSL::Combination#next
|
78
78
|
#
|
79
|
-
# This method advances the combination <tt>self</tt> to the next combination in
|
80
|
-
# lexicographic order and returns <tt>GSL::SUCCESS</tt>. If no further combinations are
|
81
|
-
# available it returns <tt>GSL::FAILURE</tt> and leaves <tt>self</tt> unmodified.
|
82
|
-
# Starting with the first combination and repeatedly applying this function will
|
79
|
+
# This method advances the combination <tt>self</tt> to the next combination in
|
80
|
+
# lexicographic order and returns <tt>GSL::SUCCESS</tt>. If no further combinations are
|
81
|
+
# available it returns <tt>GSL::FAILURE</tt> and leaves <tt>self</tt> unmodified.
|
82
|
+
# Starting with the first combination and repeatedly applying this function will
|
83
83
|
# iterate through all possible combinations of a given order.
|
84
84
|
#
|
85
85
|
# ---
|
86
86
|
# * GSL::Combination#prev
|
87
87
|
#
|
88
|
-
# This method steps backwards from the combination <tt>self</tt> to the previous
|
89
|
-
# combination in lexicographic order, returning <tt>GSL::SUCCESS</tt>.
|
90
|
-
# If no previous combination is available it returns <tt>GSL::FAILURE</tt>
|
88
|
+
# This method steps backwards from the combination <tt>self</tt> to the previous
|
89
|
+
# combination in lexicographic order, returning <tt>GSL::SUCCESS</tt>.
|
90
|
+
# If no previous combination is available it returns <tt>GSL::FAILURE</tt>
|
91
91
|
# and leaves <tt>self</tt> unmodified.
|
92
92
|
#
|
93
|
-
# ===
|
93
|
+
# === Reading and writing combinations
|
94
94
|
# ---
|
95
95
|
# * GSL::Combination#fwrite(filename)
|
96
96
|
# * GSL::Combination#fwrite(io)
|
@@ -102,7 +102,7 @@
|
|
102
102
|
# * GSL::Combination#fscanf(io)
|
103
103
|
#
|
104
104
|
#
|
105
|
-
# ==
|
105
|
+
# == Example
|
106
106
|
# #!/usr/bin/env ruby
|
107
107
|
# require("gsl")
|
108
108
|
#
|
@@ -116,10 +116,10 @@
|
|
116
116
|
# end while c.next == GSL::SUCCESS
|
117
117
|
# end
|
118
118
|
#
|
119
|
-
# {prev}[link:
|
120
|
-
# {next}[link:
|
119
|
+
# {prev}[link:rdoc/perm_rdoc.html]
|
120
|
+
# {next}[link:rdoc/sort_rdoc.html]
|
121
121
|
#
|
122
|
-
# {Reference index}[link:
|
123
|
-
# {top}[link:
|
122
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
123
|
+
# {top}[link:index.html]
|
124
124
|
#
|
125
125
|
#
|
data/rdoc/complex.rdoc
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
#
|
2
2
|
# = Complex Numbers
|
3
3
|
# Contents:
|
4
|
-
# 1. {Class methods}[link:
|
5
|
-
# 1. {Properties of Complex Numbers}[link:
|
6
|
-
# 1. {Complex Arithmetic Operators}[link:
|
7
|
-
# 1. {Elementary Complex Functions}[link:
|
8
|
-
# 1. {Complex Trigonometric Functions}[link:
|
9
|
-
# 1. {Inverse Complex Trigonometric Functions}[link:
|
10
|
-
# 1. {Complex Hyperbolic Functions}[link:
|
11
|
-
# 1. {Inverse Complex Hyperbolic Functions}[link:
|
4
|
+
# 1. {Class methods}[link:rdoc/complex_rdoc.html#label-Class+Methods]
|
5
|
+
# 1. {Properties of Complex Numbers}[link:rdoc/complex_rdoc.html#label-Properties+of+complex+numbers]
|
6
|
+
# 1. {Complex Arithmetic Operators}[link:rdoc/complex_rdoc.html#label-Complex+arithmetic+operators]
|
7
|
+
# 1. {Elementary Complex Functions}[link:rdoc/complex_rdoc.html#label-Elementary+Complex+Functions]
|
8
|
+
# 1. {Complex Trigonometric Functions}[link:rdoc/complex_rdoc.html#label-Complex+Trigonometric+Functions]
|
9
|
+
# 1. {Inverse Complex Trigonometric Functions}[link:rdoc/complex_rdoc.html#label-Inverse+Complex+Trigonometric+Functions]
|
10
|
+
# 1. {Complex Hyperbolic Functions}[link:rdoc/complex_rdoc.html#label-Complex+Hyperbolic+Functions]
|
11
|
+
# 1. {Inverse Complex Hyperbolic Functions}[link:rdoc/complex_rdoc.html#label-Inverse+Complex+Hyperbolic+Functions]
|
12
12
|
#
|
13
|
-
# ==
|
13
|
+
# == Class Methods
|
14
14
|
# ---
|
15
15
|
# * GSL::Complex.alloc(re, im)
|
16
16
|
# * GSL::Complex.rect(re, im)
|
@@ -23,7 +23,7 @@
|
|
23
23
|
#
|
24
24
|
# This returns a GSL::Complex object in polar representation, with the amplitude <tt>r</tt> and the phase (argument) <tt>theta</tt>.
|
25
25
|
#
|
26
|
-
# ==
|
26
|
+
# == Properties of complex numbers
|
27
27
|
# ---
|
28
28
|
# * GSL::Complex#real
|
29
29
|
# * GSL::Complex#re
|
@@ -50,17 +50,17 @@
|
|
50
50
|
#
|
51
51
|
# Returns the magnitude, squared magnitude, and the logarithm of the magnitude
|
52
52
|
#
|
53
|
-
# ==
|
53
|
+
# == Complex arithmetic operators
|
54
54
|
# ---
|
55
55
|
# * GSL::Complex#add(b)
|
56
56
|
# * GSL::Complex#+(b)
|
57
57
|
#
|
58
|
-
# Return the sum of the complex numbers <tt>self</tt> and <tt>b</tt>.
|
58
|
+
# Return the sum of the complex numbers <tt>self</tt> and <tt>b</tt>.
|
59
59
|
# ---
|
60
60
|
# * GSL::Complex#sub(b)
|
61
61
|
# * GSL::Complex#-(b)
|
62
62
|
#
|
63
|
-
# Return the difference of the complex numbers <tt>self</tt> and <tt>b</tt>.
|
63
|
+
# Return the difference of the complex numbers <tt>self</tt> and <tt>b</tt>.
|
64
64
|
# ---
|
65
65
|
# * GSL::Complex#mul(b)
|
66
66
|
# * GSL::Complex#*(b)
|
@@ -97,7 +97,7 @@
|
|
97
97
|
#
|
98
98
|
# Returns the negative of the complex number <tt>self</tt>.
|
99
99
|
#
|
100
|
-
# ==
|
100
|
+
# == Elementary Complex Functions
|
101
101
|
# ---
|
102
102
|
# * GSL::Complex#sqrt
|
103
103
|
# * GSL::Complex#pow(az)
|
@@ -119,7 +119,7 @@
|
|
119
119
|
# * GSL::Complex.log_b(z, b)
|
120
120
|
#
|
121
121
|
#
|
122
|
-
# ==
|
122
|
+
# == Complex Trigonometric Functions
|
123
123
|
# ---
|
124
124
|
# * GSL::Complex#sin
|
125
125
|
# * GSL::Complex#cos
|
@@ -138,7 +138,7 @@
|
|
138
138
|
# * GSL::Complex.cot(z)
|
139
139
|
#
|
140
140
|
#
|
141
|
-
# ==
|
141
|
+
# == Inverse Complex Trigonometric Functions
|
142
142
|
# ---
|
143
143
|
# * GSL::Complex#arcsin
|
144
144
|
# * GSL::Complex#arccos
|
@@ -161,7 +161,7 @@
|
|
161
161
|
# * GSL::Complex.arccot(z)
|
162
162
|
#
|
163
163
|
#
|
164
|
-
# ==
|
164
|
+
# == Complex Hyperbolic Functions
|
165
165
|
# ---
|
166
166
|
# * GSL::Complex#sinh
|
167
167
|
# * GSL::Complex#cosh
|
@@ -180,7 +180,7 @@
|
|
180
180
|
# * GSL::Complex.coth(z)
|
181
181
|
#
|
182
182
|
#
|
183
|
-
# ==
|
183
|
+
# == Inverse Complex Hyperbolic Functions
|
184
184
|
# ---
|
185
185
|
# * GSL::Complex#arcsinh
|
186
186
|
# * GSL::Complex#arccosh
|
@@ -201,10 +201,10 @@
|
|
201
201
|
# * GSL::Complex#arccoth(z)
|
202
202
|
#
|
203
203
|
#
|
204
|
-
# {prev}[link:
|
205
|
-
# {next}[link:
|
204
|
+
# {prev}[link:rdoc/math_rdoc.html]
|
205
|
+
# {next}[link:rdoc/poly_rdoc.html]
|
206
206
|
#
|
207
|
-
# {Reference index}[link:
|
208
|
-
# {top}[link:
|
207
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
208
|
+
# {top}[link:index.html]
|
209
209
|
#
|
210
210
|
#
|
data/rdoc/const.rdoc
CHANGED
@@ -2,44 +2,44 @@
|
|
2
2
|
# = Physical Constants
|
3
3
|
#
|
4
4
|
# The GSL physical constants are defined as Ruby constants under the
|
5
|
-
# modules
|
5
|
+
# modules
|
6
6
|
# * <tt>GSL::CONST::MKSA</tt> (MKSA unit)
|
7
7
|
# * <tt>GSL::CONST:CGSM</tt> (CGSM unit)
|
8
8
|
# * <tt>GSL::CONST:NUM</tt> (Dimension-less constants)
|
9
|
-
# For example, the GSL C constant
|
9
|
+
# For example, the GSL C constant
|
10
10
|
# <tt>GSL_CONST_MKSA_SPEED_OF_LIGHT</tt> is represented by a Ruby constant,
|
11
11
|
# GSL_CONST_MKSA_SPEED_OF_LIGHT ---> GSL::CONST::MKSA::SPEED_OF_LIGHT
|
12
12
|
#
|
13
13
|
# The following lists a part of the constants. Most of the constants are
|
14
14
|
# defined both in the modules <tt>GSL::CONST::MKSA</tt> and <tt>GSL::CONST::CGSM</tt>.
|
15
|
-
# See also the {GSL reference}[
|
15
|
+
# See also the {GSL reference}[https://gnu.org/software/gsl/manual/gsl-ref_37.html#SEC479]
|
16
16
|
#
|
17
17
|
# Contents:
|
18
|
-
# 1. {Fundamental Constants}[link:
|
19
|
-
# 1. {Astronomy and Astrophysics}[link:
|
20
|
-
# 1. {Atomic and Nuclear Physics}[link:
|
21
|
-
# 1. {Measurement of Time}[link:
|
22
|
-
# 1. {Imperial Units}[link:
|
23
|
-
# 1. {Nautical Units}[link:
|
24
|
-
# 1. {Printers Units}[link:
|
25
|
-
# 1. {Volume}[link:
|
26
|
-
# 1. {Mass and Weight}[link:
|
27
|
-
# 1. {Thermal Energy and Power}[link:
|
28
|
-
# 1. {Pressure}[link:
|
29
|
-
# 1. {Viscosity}[link:
|
30
|
-
# 1. {Light and Illumination}[link:
|
31
|
-
# 1. {Radioactivity}[link:
|
32
|
-
# 1. {Force and Energy}[link:
|
33
|
-
# 1. {Prefixes}[link:
|
34
|
-
# 1. {Examples}[link:
|
35
|
-
#
|
36
|
-
# ==
|
18
|
+
# 1. {Fundamental Constants}[link:rdoc/const_rdoc.html#label-Fundamental+Constants]
|
19
|
+
# 1. {Astronomy and Astrophysics}[link:rdoc/const_rdoc.html#label-Astronomy+and+Astrophysics]
|
20
|
+
# 1. {Atomic and Nuclear Physics}[link:rdoc/const_rdoc.html#label-Atomic+and+Nuclear+Physics]
|
21
|
+
# 1. {Measurement of Time}[link:rdoc/const_rdoc.html#label-Measurement+of+Time]
|
22
|
+
# 1. {Imperial Units}[link:rdoc/const_rdoc.html#label-Imperial+Units]
|
23
|
+
# 1. {Nautical Units}[link:rdoc/const_rdoc.html#label-Nautical+Units]
|
24
|
+
# 1. {Printers Units}[link:rdoc/const_rdoc.html#label-Printers+Units]
|
25
|
+
# 1. {Volume}[link:rdoc/const_rdoc.html#label-Volume]
|
26
|
+
# 1. {Mass and Weight}[link:rdoc/const_rdoc.html#label-Mass+and+Weight]
|
27
|
+
# 1. {Thermal Energy and Power}[link:rdoc/const_rdoc.html#label-Thermal+Energy+and+Power]
|
28
|
+
# 1. {Pressure}[link:rdoc/const_rdoc.html#label-Pressure]
|
29
|
+
# 1. {Viscosity}[link:rdoc/const_rdoc.html#label-Viscosity]
|
30
|
+
# 1. {Light and Illumination}[link:rdoc/const_rdoc.html#label-Light+and+Illumination]
|
31
|
+
# 1. {Radioactivity}[link:rdoc/const_rdoc.html#label-Radioactivity]
|
32
|
+
# 1. {Force and Energy}[link:rdoc/const_rdoc.html#label-Force+and+Energy]
|
33
|
+
# 1. {Prefixes}[link:rdoc/const_rdoc.html#label-Prefixes]
|
34
|
+
# 1. {Examples}[link:rdoc/const_rdoc.html#label-Example]
|
35
|
+
#
|
36
|
+
# == Fundamental Constants
|
37
37
|
# ---
|
38
38
|
# * GSL::CONST::MKSA::SPEED_OF_LIGHT
|
39
39
|
#
|
40
40
|
# The speed of light in vacuum, c.
|
41
41
|
# ---
|
42
|
-
# * GSL::CONST::MKSA::VACUUM_PERMEABILITY
|
42
|
+
# * GSL::CONST::MKSA::VACUUM_PERMEABILITY
|
43
43
|
#
|
44
44
|
# The permeability of free space, \mu (not defined in GSL::CONST::CGSM).
|
45
45
|
# ---
|
@@ -83,7 +83,7 @@
|
|
83
83
|
#
|
84
84
|
# The magnetic field of 1 Gauss.
|
85
85
|
#
|
86
|
-
# ==
|
86
|
+
# == Astronomy and Astrophysics
|
87
87
|
# ---
|
88
88
|
# * GSL::CONST::MKSA::ASTRONOMICAL_UNIT
|
89
89
|
#
|
@@ -109,7 +109,7 @@
|
|
109
109
|
#
|
110
110
|
# The mass of the Sun.
|
111
111
|
#
|
112
|
-
# ==
|
112
|
+
# == Atomic and Nuclear Physics
|
113
113
|
# ---
|
114
114
|
# * GSL::CONST::MKSA::ELECTRON_CHARGE
|
115
115
|
#
|
@@ -183,7 +183,7 @@
|
|
183
183
|
#
|
184
184
|
# The magnetic moment of the proton, mu_p.
|
185
185
|
#
|
186
|
-
# ==
|
186
|
+
# == Measurement of Time
|
187
187
|
# ---
|
188
188
|
# * GSL::CONST::MKSA::MINUTE
|
189
189
|
#
|
@@ -201,7 +201,7 @@
|
|
201
201
|
#
|
202
202
|
# The number of seconds in 1 week.
|
203
203
|
#
|
204
|
-
# ==
|
204
|
+
# == Imperial Units
|
205
205
|
# ---
|
206
206
|
# * GSL::CONST::MKSA::INCH
|
207
207
|
#
|
@@ -223,7 +223,7 @@
|
|
223
223
|
#
|
224
224
|
# The length of 1 mil (1/1000th of an inch).
|
225
225
|
#
|
226
|
-
# ==
|
226
|
+
# == Nautical Units
|
227
227
|
# ---
|
228
228
|
# * GSL::CONST::MKSA::NAUTICAL_MILE
|
229
229
|
#
|
@@ -237,7 +237,7 @@
|
|
237
237
|
#
|
238
238
|
# The speed of 1 knot.
|
239
239
|
#
|
240
|
-
# ==
|
240
|
+
# == Printers Units
|
241
241
|
# ---
|
242
242
|
# * GSL::CONST::MKSA::POINT
|
243
243
|
#
|
@@ -247,7 +247,7 @@
|
|
247
247
|
#
|
248
248
|
# The length of 1 TeX point (1/72.27 inch).
|
249
249
|
#
|
250
|
-
# ==
|
250
|
+
# == Volume
|
251
251
|
# ---
|
252
252
|
# * GSL::CONST::MKSA::ACRE
|
253
253
|
#
|
@@ -277,7 +277,7 @@
|
|
277
277
|
#
|
278
278
|
# The volume of 1 pint.
|
279
279
|
#
|
280
|
-
# ==
|
280
|
+
# == Mass and Weight
|
281
281
|
# ---
|
282
282
|
# * GSL::CONST::MKSA::POUND_MASS
|
283
283
|
#
|
@@ -323,7 +323,7 @@
|
|
323
323
|
#
|
324
324
|
# The force of 1 poundal.
|
325
325
|
#
|
326
|
-
# ==
|
326
|
+
# == Thermal Energy and Power
|
327
327
|
# ---
|
328
328
|
# * GSL::CONST::MKSA::CALORIE
|
329
329
|
#
|
@@ -341,7 +341,7 @@
|
|
341
341
|
#
|
342
342
|
# The power of 1 horsepower.
|
343
343
|
#
|
344
|
-
# ==
|
344
|
+
# == Pressure
|
345
345
|
# ---
|
346
346
|
# * GSL::CONST::MKSA::BAR
|
347
347
|
#
|
@@ -371,7 +371,7 @@
|
|
371
371
|
#
|
372
372
|
# The pressure of 1 pound per square inch.
|
373
373
|
#
|
374
|
-
# ==
|
374
|
+
# == Viscosity
|
375
375
|
# ---
|
376
376
|
# * GSL::CONST::MKSA::POISE
|
377
377
|
#
|
@@ -381,7 +381,7 @@
|
|
381
381
|
#
|
382
382
|
# The kinematic viscosity of 1 stokes.
|
383
383
|
#
|
384
|
-
# ==
|
384
|
+
# == Light and Illumination
|
385
385
|
# ---
|
386
386
|
# * GSL::CONST::MKSA::STILB
|
387
387
|
#
|
@@ -411,7 +411,7 @@
|
|
411
411
|
#
|
412
412
|
# The luminance of 1 footlambert.
|
413
413
|
#
|
414
|
-
# ==
|
414
|
+
# == Radioactivity
|
415
415
|
# ---
|
416
416
|
# * GSL::CONST::MKSA::CURIE
|
417
417
|
#
|
@@ -425,7 +425,7 @@
|
|
425
425
|
#
|
426
426
|
# The absorbed dose of 1 rad.
|
427
427
|
#
|
428
|
-
# ==
|
428
|
+
# == Force and Energy
|
429
429
|
# ---
|
430
430
|
# * GSL::CONST::MKSA::NEWTON
|
431
431
|
#
|
@@ -443,7 +443,7 @@
|
|
443
443
|
#
|
444
444
|
# The energy 1 erg = 10^-7 Joule.
|
445
445
|
#
|
446
|
-
# ==
|
446
|
+
# == Prefixes
|
447
447
|
# ---
|
448
448
|
# * GSL::CONST::NUM::YOTTA
|
449
449
|
#
|
@@ -509,9 +509,9 @@
|
|
509
509
|
#
|
510
510
|
# 10^-24
|
511
511
|
#
|
512
|
-
# ==
|
513
|
-
# The following program demonstrates the use of the physical constants in a
|
514
|
-
# calculation. In this case, the goal is to calculate the range of light-travel
|
512
|
+
# == Example
|
513
|
+
# The following program demonstrates the use of the physical constants in a
|
514
|
+
# calculation. In this case, the goal is to calculate the range of light-travel
|
515
515
|
# times from Earth to Mars.
|
516
516
|
#
|
517
517
|
# require("gsl")
|
@@ -523,8 +523,8 @@
|
|
523
523
|
# au = ASTRONOMICAL_UNIT;
|
524
524
|
# minutes = MINUTE;
|
525
525
|
#
|
526
|
-
# # distance stored in meters
|
527
|
-
# r_earth = 1.00 * au;
|
526
|
+
# # distance stored in meters
|
527
|
+
# r_earth = 1.00 * au;
|
528
528
|
# r_mars = 1.52 * au;
|
529
529
|
#
|
530
530
|
# t_min = (r_mars - r_earth) / c;
|
@@ -537,10 +537,10 @@
|
|
537
537
|
# printf("minimum = %.1f minutes\n", t_min / minutes);
|
538
538
|
# printf("maximum = %.1f minutes\n\n", t_max / minutes);
|
539
539
|
#
|
540
|
-
# {prev}[link:
|
541
|
-
# {next}[link:
|
540
|
+
# {prev}[link:rdoc/bspline_rdoc.html]
|
541
|
+
# {next}[link:rdoc/graph_rdoc.html]
|
542
542
|
#
|
543
|
-
# {Reference index}[link:
|
544
|
-
# {top}[link:
|
543
|
+
# {Reference index}[link:rdoc/ref_rdoc.html]
|
544
|
+
# {top}[link:index.html]
|
545
545
|
#
|
546
546
|
#
|