gsl 1.12.109 → 1.14.5
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +6 -0
- data/COPYING +339 -0
- data/ChangeLog +556 -0
- data/{README.rdoc → README} +3 -0
- data/Rakefile +54 -10
- data/THANKS +17 -0
- data/VERSION +1 -2
- data/examples/alf/alf.gp +15 -0
- data/examples/alf/alf.rb +32 -0
- data/examples/blas/blas.rb +13 -0
- data/examples/blas/dnrm2.rb +16 -0
- data/examples/blas/level1.rb +81 -0
- data/examples/blas/level2.rb +11 -0
- data/examples/blas/level3.rb +12 -0
- data/examples/bspline.rb +57 -0
- data/examples/cdf.rb +16 -0
- data/examples/cheb.rb +21 -0
- data/examples/combination.rb +23 -0
- data/examples/complex/RC-lpf.rb +47 -0
- data/examples/complex/add.rb +36 -0
- data/examples/complex/coerce.rb +14 -0
- data/examples/complex/complex.rb +25 -0
- data/examples/complex/fpmi.rb +70 -0
- data/examples/complex/functions.rb +77 -0
- data/examples/complex/michelson.rb +36 -0
- data/examples/complex/mul.rb +28 -0
- data/examples/complex/oscillator.rb +17 -0
- data/examples/complex/set.rb +37 -0
- data/examples/const/physconst.rb +151 -0
- data/examples/const/travel.rb +45 -0
- data/examples/deriv/demo.rb +13 -0
- data/examples/deriv/deriv.rb +36 -0
- data/examples/deriv/diff.rb +35 -0
- data/examples/dht.rb +42 -0
- data/examples/dirac.rb +56 -0
- data/examples/eigen/eigen.rb +34 -0
- data/examples/eigen/herm.rb +22 -0
- data/examples/eigen/narray.rb +9 -0
- data/examples/eigen/nonsymm.rb +37 -0
- data/examples/eigen/nonsymmv.rb +43 -0
- data/examples/eigen/qhoscillator.gp +35 -0
- data/examples/eigen/qhoscillator.rb +90 -0
- data/examples/eigen/vander.rb +41 -0
- data/examples/fft/fft.rb +17 -0
- data/examples/fft/fft2.rb +17 -0
- data/examples/fft/forward.rb +25 -0
- data/examples/fft/forward2.rb +26 -0
- data/examples/fft/radix2.rb +18 -0
- data/examples/fft/real-halfcomplex.rb +33 -0
- data/examples/fft/real-halfcomplex2.rb +30 -0
- data/examples/fft/realradix2.rb +19 -0
- data/examples/fft/sunspot.dat +256 -0
- data/examples/fft/sunspot.rb +16 -0
- data/examples/fit/expdata.dat +20 -0
- data/examples/fit/expfit.rb +31 -0
- data/examples/fit/gaussfit.rb +29 -0
- data/examples/fit/gaussian_2peaks.rb +34 -0
- data/examples/fit/hillfit.rb +40 -0
- data/examples/fit/lognormal.rb +26 -0
- data/examples/fit/lorentzfit.rb +22 -0
- data/examples/fit/multifit.rb +72 -0
- data/examples/fit/ndlinear.rb +133 -0
- data/examples/fit/nonlinearfit.rb +89 -0
- data/examples/fit/plot.gp +36 -0
- data/examples/fit/polyfit.rb +9 -0
- data/examples/fit/powerfit.rb +21 -0
- data/examples/fit/sigmoidfit.rb +40 -0
- data/examples/fit/sinfit.rb +22 -0
- data/examples/fit/wlinear.rb +46 -0
- data/examples/fresnel.rb +11 -0
- data/examples/function/function.rb +36 -0
- data/examples/function/log.rb +7 -0
- data/examples/function/min.rb +33 -0
- data/examples/function/sin.rb +10 -0
- data/examples/function/synchrotron.rb +18 -0
- data/examples/gallery/butterfly.rb +7 -0
- data/examples/gallery/cayley.rb +12 -0
- data/examples/gallery/cornu.rb +23 -0
- data/examples/gallery/eight.rb +11 -0
- data/examples/gallery/koch.rb +40 -0
- data/examples/gallery/lemniscate.rb +11 -0
- data/examples/gallery/polar.rb +11 -0
- data/examples/gallery/rgplot/cossin.rb +35 -0
- data/examples/gallery/rgplot/rgplot.replaced +0 -0
- data/examples/gallery/rgplot/roesller.rb +55 -0
- data/examples/gallery/roesller.rb +39 -0
- data/examples/gallery/scarabaeus.rb +14 -0
- data/examples/histogram/cauchy.rb +27 -0
- data/examples/histogram/cauchy.sh +2 -0
- data/examples/histogram/exponential.rb +19 -0
- data/examples/histogram/gauss.rb +16 -0
- data/examples/histogram/gsl-histogram.rb +40 -0
- data/examples/histogram/histo2d.rb +31 -0
- data/examples/histogram/histo3d.rb +34 -0
- data/examples/histogram/histogram-pdf.rb +27 -0
- data/examples/histogram/histogram.rb +26 -0
- data/examples/histogram/integral.rb +28 -0
- data/examples/histogram/poisson.rb +27 -0
- data/examples/histogram/power.rb +25 -0
- data/examples/histogram/rebin.rb +17 -0
- data/examples/histogram/smp.dat +5 -0
- data/examples/histogram/xexp.rb +21 -0
- data/examples/integration/ahmed.rb +21 -0
- data/examples/integration/cosmology.rb +75 -0
- data/examples/integration/friedmann.gp +16 -0
- data/examples/integration/friedmann.rb +35 -0
- data/examples/integration/gamma-zeta.rb +35 -0
- data/examples/integration/integration.rb +22 -0
- data/examples/integration/qag.rb +8 -0
- data/examples/integration/qag2.rb +14 -0
- data/examples/integration/qag3.rb +8 -0
- data/examples/integration/qagi.rb +28 -0
- data/examples/integration/qagi2.rb +49 -0
- data/examples/integration/qagiu.rb +29 -0
- data/examples/integration/qagp.rb +20 -0
- data/examples/integration/qags.rb +14 -0
- data/examples/integration/qawc.rb +18 -0
- data/examples/integration/qawf.rb +41 -0
- data/examples/integration/qawo.rb +29 -0
- data/examples/integration/qaws.rb +30 -0
- data/examples/integration/qng.rb +17 -0
- data/examples/interp/demo.gp +20 -0
- data/examples/interp/demo.rb +45 -0
- data/examples/interp/interp.rb +37 -0
- data/examples/interp/points +10 -0
- data/examples/interp/spline.rb +20 -0
- data/examples/jacobi/deriv.rb +40 -0
- data/examples/jacobi/integrate.rb +34 -0
- data/examples/jacobi/interp.rb +43 -0
- data/examples/jacobi/jacobi.rb +11 -0
- data/examples/linalg/HH.rb +15 -0
- data/examples/linalg/HH_narray.rb +13 -0
- data/examples/linalg/LQ_solve.rb +73 -0
- data/examples/linalg/LU.rb +84 -0
- data/examples/linalg/LU2.rb +31 -0
- data/examples/linalg/LU_narray.rb +24 -0
- data/examples/linalg/PTLQ.rb +47 -0
- data/examples/linalg/QR.rb +18 -0
- data/examples/linalg/QRPT.rb +47 -0
- data/examples/linalg/QR_solve.rb +78 -0
- data/examples/linalg/QR_solve_narray.rb +13 -0
- data/examples/linalg/SV.rb +16 -0
- data/examples/linalg/SV_narray.rb +12 -0
- data/examples/linalg/SV_solve.rb +49 -0
- data/examples/linalg/chol.rb +29 -0
- data/examples/linalg/chol_narray.rb +15 -0
- data/examples/linalg/complex.rb +57 -0
- data/examples/linalg/invert_narray.rb +10 -0
- data/examples/math/const.rb +67 -0
- data/examples/math/elementary.rb +35 -0
- data/examples/math/functions.rb +41 -0
- data/examples/math/inf_nan.rb +34 -0
- data/examples/math/minmax.rb +22 -0
- data/examples/math/power.rb +18 -0
- data/examples/math/test.rb +31 -0
- data/examples/matrix/a.dat +0 -0
- data/examples/matrix/add.rb +45 -0
- data/examples/matrix/b.dat +4 -0
- data/examples/matrix/cat.rb +31 -0
- data/examples/matrix/colvectors.rb +24 -0
- data/examples/matrix/complex.rb +41 -0
- data/examples/matrix/det.rb +29 -0
- data/examples/matrix/diagonal.rb +23 -0
- data/examples/matrix/get_all.rb +159 -0
- data/examples/matrix/hilbert.rb +31 -0
- data/examples/matrix/iterator.rb +19 -0
- data/examples/matrix/matrix.rb +57 -0
- data/examples/matrix/minmax.rb +53 -0
- data/examples/matrix/mul.rb +39 -0
- data/examples/matrix/rand.rb +20 -0
- data/examples/matrix/read.rb +29 -0
- data/examples/matrix/rowcol.rb +47 -0
- data/examples/matrix/set.rb +41 -0
- data/examples/matrix/set_all.rb +100 -0
- data/examples/matrix/view.rb +32 -0
- data/examples/matrix/view_all.rb +148 -0
- data/examples/matrix/write.rb +23 -0
- data/examples/min.rb +29 -0
- data/examples/monte/miser.rb +47 -0
- data/examples/monte/monte.rb +47 -0
- data/examples/monte/plain.rb +47 -0
- data/examples/monte/vegas.rb +46 -0
- data/examples/multimin/bundle.rb +66 -0
- data/examples/multimin/cqp.rb +109 -0
- data/examples/multimin/fdfminimizer.rb +40 -0
- data/examples/multimin/fminimizer.rb +41 -0
- data/examples/multiroot/demo.rb +36 -0
- data/examples/multiroot/fdfsolver.rb +50 -0
- data/examples/multiroot/fsolver.rb +33 -0
- data/examples/multiroot/fsolver2.rb +32 -0
- data/examples/multiroot/fsolver3.rb +26 -0
- data/examples/narray/histogram.rb +14 -0
- data/examples/narray/mandel.rb +27 -0
- data/examples/narray/narray.rb +28 -0
- data/examples/narray/narray2.rb +44 -0
- data/examples/narray/sf.rb +26 -0
- data/examples/ntuple/create.rb +17 -0
- data/examples/ntuple/project.rb +31 -0
- data/examples/odeiv/binarysystem.gp +23 -0
- data/examples/odeiv/binarysystem.rb +104 -0
- data/examples/odeiv/demo.gp +24 -0
- data/examples/odeiv/demo.rb +69 -0
- data/examples/odeiv/demo2.gp +26 -0
- data/examples/odeiv/duffing.rb +45 -0
- data/examples/odeiv/frei1.rb +109 -0
- data/examples/odeiv/frei2.rb +76 -0
- data/examples/odeiv/legendre.rb +52 -0
- data/examples/odeiv/odeiv.rb +32 -0
- data/examples/odeiv/odeiv2.rb +45 -0
- data/examples/odeiv/oscillator.rb +42 -0
- data/examples/odeiv/sedov.rb +97 -0
- data/examples/odeiv/whitedwarf.gp +40 -0
- data/examples/odeiv/whitedwarf.rb +158 -0
- data/examples/ool/conmin.rb +100 -0
- data/examples/ool/gencan.rb +99 -0
- data/examples/ool/pgrad.rb +100 -0
- data/examples/ool/spg.rb +100 -0
- data/examples/pdf/bernoulli.rb +5 -0
- data/examples/pdf/beta.rb +7 -0
- data/examples/pdf/binomiral.rb +10 -0
- data/examples/pdf/cauchy.rb +6 -0
- data/examples/pdf/chisq.rb +8 -0
- data/examples/pdf/exponential.rb +7 -0
- data/examples/pdf/exppow.rb +6 -0
- data/examples/pdf/fdist.rb +7 -0
- data/examples/pdf/flat.rb +7 -0
- data/examples/pdf/gamma.rb +8 -0
- data/examples/pdf/gauss-tail.rb +5 -0
- data/examples/pdf/gauss.rb +6 -0
- data/examples/pdf/geometric.rb +5 -0
- data/examples/pdf/gumbel.rb +6 -0
- data/examples/pdf/hypergeometric.rb +11 -0
- data/examples/pdf/landau.rb +5 -0
- data/examples/pdf/laplace.rb +7 -0
- data/examples/pdf/logarithmic.rb +5 -0
- data/examples/pdf/logistic.rb +6 -0
- data/examples/pdf/lognormal.rb +6 -0
- data/examples/pdf/neg-binomiral.rb +10 -0
- data/examples/pdf/pareto.rb +7 -0
- data/examples/pdf/pascal.rb +10 -0
- data/examples/pdf/poisson.rb +5 -0
- data/examples/pdf/rayleigh-tail.rb +6 -0
- data/examples/pdf/rayleigh.rb +6 -0
- data/examples/pdf/tdist.rb +6 -0
- data/examples/pdf/weibull.rb +8 -0
- data/examples/permutation/ex1.rb +22 -0
- data/examples/permutation/permutation.rb +16 -0
- data/examples/poly/bell.rb +6 -0
- data/examples/poly/bessel.rb +6 -0
- data/examples/poly/cheb.rb +6 -0
- data/examples/poly/cheb_II.rb +6 -0
- data/examples/poly/cubic.rb +9 -0
- data/examples/poly/demo.rb +20 -0
- data/examples/poly/eval.rb +28 -0
- data/examples/poly/eval_derivs.rb +14 -0
- data/examples/poly/fit.rb +21 -0
- data/examples/poly/hermite.rb +6 -0
- data/examples/poly/poly.rb +13 -0
- data/examples/poly/quadratic.rb +25 -0
- data/examples/random/diffusion.rb +34 -0
- data/examples/random/gaussian.rb +9 -0
- data/examples/random/generator.rb +27 -0
- data/examples/random/hdsobol.rb +21 -0
- data/examples/random/poisson.rb +9 -0
- data/examples/random/qrng.rb +19 -0
- data/examples/random/randomwalk.rb +37 -0
- data/examples/random/randomwalk2d.rb +19 -0
- data/examples/random/rayleigh.rb +36 -0
- data/examples/random/rng.rb +33 -0
- data/examples/random/rngextra.rb +14 -0
- data/examples/roots/bisection.rb +25 -0
- data/examples/roots/brent.rb +43 -0
- data/examples/roots/demo.rb +30 -0
- data/examples/roots/newton.rb +46 -0
- data/examples/roots/recombination.gp +12 -0
- data/examples/roots/recombination.rb +61 -0
- data/examples/roots/steffenson.rb +48 -0
- data/examples/sf/ShiChi.rb +6 -0
- data/examples/sf/SiCi.rb +6 -0
- data/examples/sf/airy_Ai.rb +8 -0
- data/examples/sf/airy_Bi.rb +8 -0
- data/examples/sf/bessel_IK.rb +12 -0
- data/examples/sf/bessel_JY.rb +13 -0
- data/examples/sf/beta_inc.rb +9 -0
- data/examples/sf/clausen.rb +6 -0
- data/examples/sf/dawson.rb +5 -0
- data/examples/sf/debye.rb +9 -0
- data/examples/sf/dilog.rb +6 -0
- data/examples/sf/ellint.rb +6 -0
- data/examples/sf/expint.rb +8 -0
- data/examples/sf/fermi.rb +10 -0
- data/examples/sf/gamma_inc_P.rb +9 -0
- data/examples/sf/gegenbauer.rb +8 -0
- data/examples/sf/hyperg.rb +7 -0
- data/examples/sf/laguerre.rb +19 -0
- data/examples/sf/lambertW.rb +5 -0
- data/examples/sf/legendre_P.rb +10 -0
- data/examples/sf/lngamma.rb +5 -0
- data/examples/sf/psi.rb +54 -0
- data/examples/sf/sphbessel.gp +27 -0
- data/examples/sf/sphbessel.rb +30 -0
- data/examples/sf/synchrotron.rb +5 -0
- data/examples/sf/transport.rb +10 -0
- data/examples/sf/zetam1.rb +5 -0
- data/examples/siman.rb +44 -0
- data/examples/sort/heapsort.rb +23 -0
- data/examples/sort/heapsort_vector_complex.rb +21 -0
- data/examples/sort/sort.rb +23 -0
- data/examples/sort/sort2.rb +16 -0
- data/examples/stats/mean.rb +17 -0
- data/examples/stats/statistics.rb +18 -0
- data/examples/stats/test.rb +9 -0
- data/examples/sum.rb +34 -0
- data/examples/tamu_anova.rb +18 -0
- data/examples/vector/a.dat +0 -0
- data/examples/vector/add.rb +56 -0
- data/examples/vector/b.dat +4 -0
- data/examples/vector/c.dat +3 -0
- data/examples/vector/collect.rb +26 -0
- data/examples/vector/compare.rb +28 -0
- data/examples/vector/complex.rb +51 -0
- data/examples/vector/complex_get_all.rb +85 -0
- data/examples/vector/complex_set_all.rb +131 -0
- data/examples/vector/complex_view_all.rb +77 -0
- data/examples/vector/connect.rb +22 -0
- data/examples/vector/decimate.rb +38 -0
- data/examples/vector/diff.rb +31 -0
- data/examples/vector/filescan.rb +17 -0
- data/examples/vector/floor.rb +23 -0
- data/examples/vector/get_all.rb +82 -0
- data/examples/vector/gnuplot.rb +38 -0
- data/examples/vector/graph.rb +28 -0
- data/examples/vector/histogram.rb +22 -0
- data/examples/vector/linspace.rb +24 -0
- data/examples/vector/log.rb +17 -0
- data/examples/vector/logic.rb +33 -0
- data/examples/vector/logspace.rb +25 -0
- data/examples/vector/minmax.rb +47 -0
- data/examples/vector/mul.rb +49 -0
- data/examples/vector/narray.rb +46 -0
- data/examples/vector/read.rb +29 -0
- data/examples/vector/set.rb +35 -0
- data/examples/vector/set_all.rb +121 -0
- data/examples/vector/smpv.dat +15 -0
- data/examples/vector/test.rb +43 -0
- data/examples/vector/test_gslblock.rb +58 -0
- data/examples/vector/vector.rb +110 -0
- data/examples/vector/view.rb +35 -0
- data/examples/vector/view_all.rb +73 -0
- data/examples/vector/where.rb +29 -0
- data/examples/vector/write.rb +24 -0
- data/examples/vector/zip.rb +34 -0
- data/examples/wavelet/ecg.dat +256 -0
- data/examples/wavelet/wavelet1.rb +50 -0
- data/ext/extconf.rb +9 -0
- data/ext/gsl.c +10 -1
- data/ext/histogram.c +6 -2
- data/ext/integration.c +39 -0
- data/ext/matrix_complex.c +1 -1
- data/ext/multiset.c +214 -0
- data/ext/nmf.c +4 -0
- data/ext/nmf_wrap.c +3 -0
- data/ext/vector_complex.c +1 -1
- data/ext/vector_double.c +3 -3
- data/ext/vector_source.c +6 -6
- data/include/rb_gsl.h +7 -0
- data/include/rb_gsl_common.h +6 -0
- data/rdoc/alf.rdoc +77 -0
- data/rdoc/blas.rdoc +269 -0
- data/rdoc/bspline.rdoc +42 -0
- data/rdoc/changes.rdoc +164 -0
- data/rdoc/cheb.rdoc +99 -0
- data/rdoc/cholesky_complex.rdoc +46 -0
- data/rdoc/combi.rdoc +125 -0
- data/rdoc/complex.rdoc +210 -0
- data/rdoc/const.rdoc +546 -0
- data/rdoc/dht.rdoc +122 -0
- data/rdoc/diff.rdoc +133 -0
- data/rdoc/ehandling.rdoc +50 -0
- data/rdoc/eigen.rdoc +401 -0
- data/rdoc/fft.rdoc +535 -0
- data/rdoc/fit.rdoc +284 -0
- data/rdoc/function.rdoc +94 -0
- data/rdoc/graph.rdoc +137 -0
- data/rdoc/hist.rdoc +409 -0
- data/rdoc/hist2d.rdoc +279 -0
- data/rdoc/hist3d.rdoc +112 -0
- data/rdoc/index.rdoc +62 -0
- data/rdoc/integration.rdoc +398 -0
- data/rdoc/interp.rdoc +231 -0
- data/rdoc/intro.rdoc +27 -0
- data/rdoc/linalg.rdoc +681 -0
- data/rdoc/linalg_complex.rdoc +88 -0
- data/rdoc/math.rdoc +276 -0
- data/rdoc/matrix.rdoc +1093 -0
- data/rdoc/min.rdoc +189 -0
- data/rdoc/monte.rdoc +234 -0
- data/rdoc/multimin.rdoc +312 -0
- data/rdoc/multiroot.rdoc +293 -0
- data/rdoc/narray.rdoc +173 -0
- data/rdoc/ndlinear.rdoc +247 -0
- data/rdoc/nonlinearfit.rdoc +348 -0
- data/rdoc/ntuple.rdoc +88 -0
- data/rdoc/odeiv.rdoc +378 -0
- data/rdoc/perm.rdoc +221 -0
- data/rdoc/poly.rdoc +335 -0
- data/rdoc/qrng.rdoc +90 -0
- data/rdoc/randist.rdoc +233 -0
- data/rdoc/ref.rdoc +93 -0
- data/rdoc/rng.rdoc +203 -0
- data/rdoc/rngextra.rdoc +11 -0
- data/rdoc/roots.rdoc +305 -0
- data/rdoc/screenshot.rdoc +40 -0
- data/rdoc/sf.rdoc +1622 -0
- data/rdoc/siman.rdoc +89 -0
- data/rdoc/sort.rdoc +94 -0
- data/rdoc/start.rdoc +16 -0
- data/rdoc/stats.rdoc +219 -0
- data/rdoc/sum.rdoc +65 -0
- data/rdoc/tensor.rdoc +251 -0
- data/rdoc/tut.rdoc +5 -0
- data/rdoc/use.rdoc +177 -0
- data/rdoc/vector.rdoc +1243 -0
- data/rdoc/vector_complex.rdoc +347 -0
- data/rdoc/wavelet.rdoc +218 -0
- data/setup.rb +1585 -0
- data/tests/blas/amax.rb +14 -0
- data/tests/blas/asum.rb +16 -0
- data/tests/blas/axpy.rb +25 -0
- data/tests/blas/copy.rb +23 -0
- data/tests/blas/dot.rb +23 -0
- data/tests/bspline.rb +53 -0
- data/tests/cdf.rb +1388 -0
- data/tests/cheb.rb +112 -0
- data/tests/combination.rb +123 -0
- data/tests/complex.rb +17 -0
- data/tests/const.rb +24 -0
- data/tests/deriv.rb +85 -0
- data/tests/dht/dht1.rb +17 -0
- data/tests/dht/dht2.rb +23 -0
- data/tests/dht/dht3.rb +23 -0
- data/tests/dht/dht4.rb +23 -0
- data/tests/diff.rb +78 -0
- data/tests/eigen/eigen.rb +220 -0
- data/tests/eigen/gen.rb +105 -0
- data/tests/eigen/genherm.rb +66 -0
- data/tests/eigen/gensymm.rb +68 -0
- data/tests/eigen/nonsymm.rb +53 -0
- data/tests/eigen/nonsymmv.rb +53 -0
- data/tests/eigen/symm-herm.rb +74 -0
- data/tests/err.rb +58 -0
- data/tests/fit.rb +124 -0
- data/tests/gsl_test.rb +118 -0
- data/tests/gsl_test2.rb +107 -0
- data/tests/histo.rb +12 -0
- data/tests/integration/integration1.rb +72 -0
- data/tests/integration/integration2.rb +71 -0
- data/tests/integration/integration3.rb +71 -0
- data/tests/integration/integration4.rb +71 -0
- data/tests/interp.rb +45 -0
- data/tests/linalg/HH.rb +64 -0
- data/tests/linalg/LU.rb +47 -0
- data/tests/linalg/QR.rb +77 -0
- data/tests/linalg/SV.rb +24 -0
- data/tests/linalg/TDN.rb +116 -0
- data/tests/linalg/TDS.rb +122 -0
- data/tests/linalg/bidiag.rb +73 -0
- data/tests/linalg/cholesky.rb +20 -0
- data/tests/linalg/linalg.rb +158 -0
- data/tests/matrix/matrix_nmf_test.rb +39 -0
- data/tests/matrix/matrix_test.rb +48 -0
- data/tests/min.rb +99 -0
- data/tests/monte/miser.rb +31 -0
- data/tests/monte/vegas.rb +45 -0
- data/tests/multifit/test_2dgauss.rb +112 -0
- data/tests/multifit/test_brown.rb +90 -0
- data/tests/multifit/test_enso.rb +246 -0
- data/tests/multifit/test_filip.rb +155 -0
- data/tests/multifit/test_gauss.rb +97 -0
- data/tests/multifit/test_longley.rb +110 -0
- data/tests/multifit/test_multifit.rb +52 -0
- data/tests/multimin.rb +139 -0
- data/tests/multiroot.rb +131 -0
- data/tests/multiset.rb +52 -0
- data/tests/odeiv.rb +353 -0
- data/tests/poly/poly.rb +242 -0
- data/tests/poly/special.rb +65 -0
- data/tests/qrng.rb +131 -0
- data/tests/quartic.rb +29 -0
- data/tests/randist.rb +134 -0
- data/tests/rng.rb +305 -0
- data/tests/roots.rb +76 -0
- data/tests/run-test.sh +17 -0
- data/tests/sf/gsl_test_sf.rb +249 -0
- data/tests/sf/test_airy.rb +83 -0
- data/tests/sf/test_bessel.rb +306 -0
- data/tests/sf/test_coulomb.rb +17 -0
- data/tests/sf/test_dilog.rb +25 -0
- data/tests/sf/test_gamma.rb +209 -0
- data/tests/sf/test_hyperg.rb +356 -0
- data/tests/sf/test_legendre.rb +227 -0
- data/tests/sf/test_mathieu.rb +59 -0
- data/tests/sf/test_sf.rb +839 -0
- data/tests/stats.rb +174 -0
- data/tests/sum.rb +98 -0
- data/tests/sys.rb +323 -0
- data/tests/tensor.rb +419 -0
- data/tests/vector/vector_complex_test.rb +101 -0
- data/tests/vector/vector_test.rb +141 -0
- data/tests/wavelet.rb +142 -0
- metadata +596 -15
data/tests/multiroot.rb
ADDED
@@ -0,0 +1,131 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Ruby/GSL implementation of GSL "multiroot/test.c"
|
3
|
+
require("gsl")
|
4
|
+
require("./gsl_test2.rb")
|
5
|
+
include GSL::Test
|
6
|
+
include Math
|
7
|
+
|
8
|
+
GC.disable
|
9
|
+
|
10
|
+
def test_fdf(desc, fdf, initpt, factor, type)
|
11
|
+
n = fdf.n
|
12
|
+
x = eval("#{initpt}")
|
13
|
+
if factor != 1.0
|
14
|
+
x = x.scale(factor)
|
15
|
+
end
|
16
|
+
s = GSL::MultiRoot::FdfSolver.alloc(type, n)
|
17
|
+
s.set(fdf, x)
|
18
|
+
iter = 0
|
19
|
+
begin
|
20
|
+
iter += 1
|
21
|
+
status = s.iterate
|
22
|
+
status = GSL::MultiRoot.test_residual(s.f, 0.0000001)
|
23
|
+
end while status == GSL::CONTINUE and iter < 1000
|
24
|
+
|
25
|
+
jac, stat = GSL::MultiRoot.fdjacobian(fdf, s.x, s.f, GSL::SQRT_DBL_EPSILON)
|
26
|
+
r = 0.0
|
27
|
+
sum = 0.0
|
28
|
+
for i in 0...n
|
29
|
+
for j in 0...n
|
30
|
+
u = jac[i,j]
|
31
|
+
su = s.jac[i,j]
|
32
|
+
r = (u - su).abs/(1e-6 + 1e-6 * u.abs)
|
33
|
+
sum += r
|
34
|
+
if (u - su).abs > (1e-6 + 1e-6 * u.abs)
|
35
|
+
printf("broken jacobian %g\n", r)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
printf("avg r = %g\n", sum/(n*n))
|
39
|
+
end
|
40
|
+
|
41
|
+
residual = 0.0
|
42
|
+
for i in 0...n
|
43
|
+
residual += s.f[i].abs
|
44
|
+
end
|
45
|
+
GSL::Test::test(status, "#{type} on #{desc} (#{factor}), #{iter} iterations, residual = #{residual}")
|
46
|
+
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_f(desc, fdf, initpt, factor, type)
|
50
|
+
n = fdf.n
|
51
|
+
x = eval("#{initpt}")
|
52
|
+
x = x.scale(factor)
|
53
|
+
function = GSL::MultiRoot::Function.alloc(fdf.f, fdf.n)
|
54
|
+
s = GSL::MultiRoot::FSolver.alloc(type, n)
|
55
|
+
s.set(function, x)
|
56
|
+
iter = 0
|
57
|
+
begin
|
58
|
+
iter += 1
|
59
|
+
status = s.iterate
|
60
|
+
status = GSL::MultiRoot.test_residual(s.f, 0.0000001)
|
61
|
+
end while status == GSL::CONTINUE and iter < 1000
|
62
|
+
residual = 0.0
|
63
|
+
for i in 0...n
|
64
|
+
residual += s.f[i].abs
|
65
|
+
end
|
66
|
+
GSL::Test::test(status, "#{type} on #{desc} (#{factor}), #{iter} iterations, residual = #{residual}")
|
67
|
+
end
|
68
|
+
|
69
|
+
def roth_initpt
|
70
|
+
return GSL::Vector.alloc(4.5, 3.5)
|
71
|
+
end
|
72
|
+
|
73
|
+
def wood_initpt
|
74
|
+
return GSL::Vector.alloc(-3.0, -1.0, -3.0, -1.0)
|
75
|
+
end
|
76
|
+
|
77
|
+
def rosenbrock_initpt
|
78
|
+
GSL::Vector.alloc(-1.2, 1.0)
|
79
|
+
end
|
80
|
+
|
81
|
+
roth_f = Proc.new { |x, f|
|
82
|
+
u = x[0]
|
83
|
+
v = x[1]
|
84
|
+
f[0] = -13.0 + u + ((5.0 - v)*v - 2.0)*v;
|
85
|
+
f[1] = -29.0 + u + ((v + 1.0)*v - 14.0)*v;
|
86
|
+
}
|
87
|
+
|
88
|
+
roth_df = Proc.new { |x, df|
|
89
|
+
x1 = x[1]
|
90
|
+
df.set(0, 0, 1.0)
|
91
|
+
df.set(0, 1, -3 * x1 * x1 + 10 * x1 - 2)
|
92
|
+
df.set(1, 0, 1.0)
|
93
|
+
df.set(1, 1, 3 * x1 * x1 + 2 * x1 - 14)
|
94
|
+
}
|
95
|
+
|
96
|
+
rosenbrock_f = Proc.new { |x, f|
|
97
|
+
x0 = x[0]; x1 = x[1]
|
98
|
+
y0 = 1.0 - x0
|
99
|
+
y1 = 10*(x1 - x0*x0)
|
100
|
+
f[0] = y0
|
101
|
+
f[1] = y1
|
102
|
+
GSL::SUCCESS
|
103
|
+
}
|
104
|
+
rosenbrock_df = Proc.new { |x, df|
|
105
|
+
x0 = x[0]
|
106
|
+
df00 = -1.0
|
107
|
+
df01 = 0.0
|
108
|
+
df10 = -20*x0
|
109
|
+
df11 = 10
|
110
|
+
df.set(0, 0, df00)
|
111
|
+
df.set(0, 1, df01)
|
112
|
+
df.set(1, 0, df10)
|
113
|
+
df.set(1, 1, df11)
|
114
|
+
GSL::SUCCESS
|
115
|
+
}
|
116
|
+
|
117
|
+
roth = GSL::MultiRoot::Function_fdf.alloc(roth_f, roth_df, 2)
|
118
|
+
rosenbrock = GSL::MultiRoot::Function_fdf.alloc(rosenbrock_f, rosenbrock_df, 2)
|
119
|
+
|
120
|
+
fsolvers = ["dnewton", "broyden", "hybrid", "hybrids"]
|
121
|
+
fsolvers.each do |type|
|
122
|
+
test_f("Roth", roth, "roth_initpt", 1.0, type)
|
123
|
+
test_f("Rosenbrock", rosenbrock, "rosenbrock_initpt", 1.0, type)
|
124
|
+
end
|
125
|
+
|
126
|
+
exit
|
127
|
+
f = 1.0
|
128
|
+
fdfsolvers = ["newton", "gnewton", "hybridj", "hybridsj"]
|
129
|
+
fdfsolvers.each do |type|
|
130
|
+
test_fdf("Roth", roth, "roth_initpt", f, type)
|
131
|
+
end
|
data/tests/multiset.rb
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require("gsl")
|
3
|
+
require("./gsl_test2.rb")
|
4
|
+
include GSL::Test
|
5
|
+
|
6
|
+
exit if GSL::VERSION < "1.14"
|
7
|
+
|
8
|
+
|
9
|
+
c63 = [ [ 0,0,0 ], [ 0,0,1 ], [ 0,0,2 ], [ 0,0,3 ], [ 0,0,4 ], [ 0,0,5 ],
|
10
|
+
[ 0,1,1 ], [ 0,1,2 ], [ 0,1,3 ], [ 0,1,4 ], [ 0,1,5 ],
|
11
|
+
[ 0,2,2 ], [ 0,2,3 ], [ 0,2,4 ], [ 0,2,5 ],
|
12
|
+
[ 0,3,3 ], [ 0,3,4 ], [ 0,3,5 ],
|
13
|
+
[ 0,4,4 ], [ 0,4,5 ],
|
14
|
+
[ 0,5,5 ],
|
15
|
+
[ 1,1,1 ], [ 1,1,2 ], [ 1,1,3 ], [ 1,1,4 ], [ 1,1,5 ],
|
16
|
+
[ 1,2,2 ], [ 1,2,3 ], [ 1,2,4 ], [ 1,2,5 ],
|
17
|
+
[ 1,3,3 ], [ 1,3,4 ], [ 1,3,5 ],
|
18
|
+
[ 1,4,4 ], [ 1,4,5 ],
|
19
|
+
[ 1,5,5 ],
|
20
|
+
[ 2,2,2 ], [ 2,2,3 ], [ 2,2,4 ], [ 2,2,5 ],
|
21
|
+
[ 2,3,3 ], [ 2,3,4 ], [ 2,3,5 ],
|
22
|
+
[ 2,4,4 ], [ 2,4,5 ],
|
23
|
+
[ 2,5,5 ],
|
24
|
+
[ 3,3,3 ], [ 3,3,4 ], [ 3,3,5 ],
|
25
|
+
[ 3,4,4 ], [ 3,4,5 ],
|
26
|
+
[ 3,5,5 ],
|
27
|
+
[ 4,4,4 ], [ 4,4,5 ],
|
28
|
+
[ 4,5,5 ],
|
29
|
+
[ 5,5,5 ]]
|
30
|
+
|
31
|
+
c = GSL::Multiset::alloc(6, 3)
|
32
|
+
c.init_first()
|
33
|
+
i = 0
|
34
|
+
status = 0
|
35
|
+
while true
|
36
|
+
if i >= 56
|
37
|
+
status = 1;
|
38
|
+
break
|
39
|
+
end
|
40
|
+
for j in 0...3 do
|
41
|
+
if c.data[j] != c63[i][j]
|
42
|
+
ret = 0
|
43
|
+
else
|
44
|
+
ret = 1
|
45
|
+
end
|
46
|
+
status |= ret
|
47
|
+
end
|
48
|
+
s1 = c.valid
|
49
|
+
GSL::Test::test(s1, "gsl_multiset_valid(#{i})")
|
50
|
+
i += 1
|
51
|
+
break if c.next != GSL::SUCCESS
|
52
|
+
end
|
data/tests/odeiv.rb
ADDED
@@ -0,0 +1,353 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# Ruby/GSL implementation of GSL "odeiv-initval/test.c"
|
3
|
+
require("gsl")
|
4
|
+
require("./gsl_test2.rb")
|
5
|
+
include GSL::Test
|
6
|
+
include Math
|
7
|
+
|
8
|
+
rhs_linear = Proc.new { |t, y, f|
|
9
|
+
f[0] = 0.0
|
10
|
+
f[1] = y[0]
|
11
|
+
GSL::SUCCESS
|
12
|
+
}
|
13
|
+
|
14
|
+
jac_linear = Proc.new { |t, y, dfdy, dfdt|
|
15
|
+
dfdy.set(0, 0, 0.0)
|
16
|
+
dfdy.set(0, 1, 0.0)
|
17
|
+
dfdy.set(1, 0, 1.0)
|
18
|
+
dfdy.set(1, 1, 0.0)
|
19
|
+
dfdt[0] = 0.0
|
20
|
+
dfdt[1] = 0.0
|
21
|
+
GSL::SUCCESS
|
22
|
+
}
|
23
|
+
|
24
|
+
Rhs_func_lin = GSL::Odeiv::System.alloc(rhs_linear, jac_linear, 2)
|
25
|
+
|
26
|
+
rhs_sin = Proc.new { |t, y, f|
|
27
|
+
f[0] = -y[1]
|
28
|
+
f[1] = y[0]
|
29
|
+
GSL::SUCCESS
|
30
|
+
}
|
31
|
+
|
32
|
+
jac_sin = Proc.new { |t, y, dfdy, dfdt|
|
33
|
+
dfdy.set(0, 0, 0.0)
|
34
|
+
dfdy.set(0, 1, -1.0)
|
35
|
+
dfdy.set(1, 0, 1.0)
|
36
|
+
dfdy.set(1, 1, 0.0)
|
37
|
+
dfdt[0] = 0.0
|
38
|
+
dfdt[1] = 0.0
|
39
|
+
GSL::SUCCESS
|
40
|
+
}
|
41
|
+
|
42
|
+
Rhs_func_sin = GSL::Odeiv::System.alloc(rhs_sin, jac_sin, 2)
|
43
|
+
|
44
|
+
rhs_exp = Proc.new { |t, y, f|
|
45
|
+
f[0] = y[1]
|
46
|
+
f[1] = y[0]
|
47
|
+
GSL::SUCCESS
|
48
|
+
}
|
49
|
+
|
50
|
+
jac_exp = Proc.new { |t, y, dfdy, dfdt|
|
51
|
+
dfdy.set(0, 0, 0.0)
|
52
|
+
dfdy.set(0, 1, 1.0)
|
53
|
+
dfdy.set(1, 0, 1.0)
|
54
|
+
dfdy.set(1, 1, 0.0)
|
55
|
+
dfdt[0] = 0.0
|
56
|
+
dfdt[1] = 0.0
|
57
|
+
GSL::SUCCESS
|
58
|
+
}
|
59
|
+
|
60
|
+
Rhs_func_exp = GSL::Odeiv::System.alloc(rhs_exp, jac_exp, 2)
|
61
|
+
|
62
|
+
rhs_stiff = Proc.new { |t, y, f|
|
63
|
+
f[0] = 998.0 * y[0] + 1998.0 * y[1]
|
64
|
+
f[1] = -999.0 * y[0] - 1999.0 * y[1]
|
65
|
+
GSL::SUCCESS
|
66
|
+
}
|
67
|
+
|
68
|
+
jac_stiff = Proc.new { |t, y, dfdy, dfdt|
|
69
|
+
dfdy.set(0, 0, 998.0);
|
70
|
+
dfdy.set(0, 1, 1998.0);
|
71
|
+
dfdy.set(1, 0, -999.0);
|
72
|
+
dfdy.set(1, 1, -1999.0);
|
73
|
+
dfdt[0] = 0.0;
|
74
|
+
dfdt[1] = 0.0;
|
75
|
+
GSL::SUCCESS;
|
76
|
+
}
|
77
|
+
|
78
|
+
Rhs_func_stiff = GSL::Odeiv::System.alloc(rhs_stiff, jac_stiff, 2)
|
79
|
+
|
80
|
+
def test_stepper_linear(type, hstart, base_prec)
|
81
|
+
h = hstart*1.0
|
82
|
+
delmax = 0.0
|
83
|
+
count = 0
|
84
|
+
stepper = GSL::Odeiv::Step.alloc(type, 2)
|
85
|
+
y = GSL::Vector.alloc(1.0, 0.0)
|
86
|
+
yerr = GSL::Vector.alloc(2)
|
87
|
+
t = 0.0
|
88
|
+
s = 0
|
89
|
+
while t < 4.0
|
90
|
+
status = stepper.apply(t, h, y, yerr, Rhs_func_lin)
|
91
|
+
del = ((y[1] - (t + h))/y[1]).abs
|
92
|
+
delmax = MAX_DBL(del, delmax)
|
93
|
+
if del > (count + 1.0)*base_prec
|
94
|
+
printf(" LINEAR(%20.17g) %20.17g %20.17g %8.4g\n", t + h, y[1], t + h, del);
|
95
|
+
s += 1
|
96
|
+
end
|
97
|
+
count += 1
|
98
|
+
t += h
|
99
|
+
end
|
100
|
+
GSL::Test::test(s, "#{stepper.name}, linear [0,4], max relative error = #{delmax}")
|
101
|
+
end
|
102
|
+
|
103
|
+
def test_stepper_sin(type, hstart, base_prec)
|
104
|
+
h = hstart*1.0
|
105
|
+
delmax = 0.0
|
106
|
+
count = 0
|
107
|
+
stepper = GSL::Odeiv::Step.alloc(type, 2)
|
108
|
+
y = GSL::Vector.alloc(1.0, 0.0)
|
109
|
+
yerr = GSL::Vector.alloc(2)
|
110
|
+
t = 0.0
|
111
|
+
s = 0
|
112
|
+
while t < M_PI
|
113
|
+
sin_th = sin(t + h)
|
114
|
+
status = stepper.apply(t, h, y, yerr, Rhs_func_sin)
|
115
|
+
del = ((y[1] - sin_th)/sin_th).abs
|
116
|
+
delmax = GSL::MAX_DBL(del, delmax)
|
117
|
+
if t < 0.5*M_PI
|
118
|
+
stat = (del > (count+1.0)*base_prec) ? 1 : 0
|
119
|
+
elsif t < 0.7*M_PI
|
120
|
+
stat = (del > 1.0e+04*base_prec) ? 1 : 0
|
121
|
+
elsif t < 0.9*M_PI
|
122
|
+
stat = (del > 1.0e+06*base_prec) ? 1 : 0
|
123
|
+
else
|
124
|
+
stat = (del > 1.0e+09*base_prec) ? 1 : 0
|
125
|
+
end
|
126
|
+
if stat != 0
|
127
|
+
printf(" SIN(%22.18g) %22.18g %22.18g %10.6g\n", t + h, y[1], sin_th, del);
|
128
|
+
end
|
129
|
+
s += stat
|
130
|
+
count += 1
|
131
|
+
t += h
|
132
|
+
end
|
133
|
+
if delmax > 1.0e+09*base_prec
|
134
|
+
s += 1
|
135
|
+
printf(" SIN(0 .. M_PI) delmax = %g\n", delmax)
|
136
|
+
end
|
137
|
+
GSL::Test::test(s, "#{stepper.name}, sine [0,pi], max relative error = #{delmax}")
|
138
|
+
|
139
|
+
delmax = 0.0
|
140
|
+
while t < 3*M_PI
|
141
|
+
status = stepper.apply(t, h, y, yerr, Rhs_func_sin)
|
142
|
+
del = (y[1] - sin(t)).abs
|
143
|
+
delmax = GSL::MAX_DBL(del, delmax)
|
144
|
+
count += 1
|
145
|
+
t += h
|
146
|
+
end
|
147
|
+
if del > count * 2.0 * base_prec
|
148
|
+
s += 1
|
149
|
+
printf(" SIN(%22.18g) %22.18g %22.18g %10.6g\n", t + h, y[1], sin(t), del)
|
150
|
+
end
|
151
|
+
test(s, "#{stepper.name}, sin [pi,3*pi], max absolute error = #{delmax}")
|
152
|
+
end
|
153
|
+
|
154
|
+
def test_stepper_exp(type, hstart, base_prec)
|
155
|
+
s = 0
|
156
|
+
y = GSL::Vector.alloc(1.0, 1.0)
|
157
|
+
yerr = GSL::Vector.alloc(2)
|
158
|
+
delmax = 0.0
|
159
|
+
count = 0
|
160
|
+
h = hstart*1.0
|
161
|
+
stepper = GSL::Odeiv::Step.alloc(type, 2)
|
162
|
+
t = 0.0
|
163
|
+
while t < 5.0
|
164
|
+
ex = exp(t + h)
|
165
|
+
status = stepper.apply(t, h, y, yerr, Rhs_func_exp)
|
166
|
+
del = ((y[1] - ex)/y[1]).abs
|
167
|
+
delmax = GSL::MAX_DBL(del, delmax)
|
168
|
+
if del > (count+1.0)*2.0*base_prec
|
169
|
+
printf(" EXP(%20.17g) %20.17g %20.17g %8.4g\n", t + h, y[1], ex, del);
|
170
|
+
s += 1
|
171
|
+
end
|
172
|
+
count += 1
|
173
|
+
t += h
|
174
|
+
end
|
175
|
+
GSL::Test::test(s, "#{stepper.name}, exponential [0,5], max relative error = #{delmax}")
|
176
|
+
end
|
177
|
+
|
178
|
+
def test_stepper_stiff(type, hstart, base_prec)
|
179
|
+
h = hstart*1.0
|
180
|
+
s = 0
|
181
|
+
delmax = 0.0
|
182
|
+
count = 0
|
183
|
+
stepper = GSL::Odeiv::Step.alloc(type, 2)
|
184
|
+
y = GSL::Vector.alloc(1.0, 0.0)
|
185
|
+
yerr = GSL::Vector.alloc(2)
|
186
|
+
t = 0.0
|
187
|
+
while t < 5.0
|
188
|
+
status = stepper.apply(t, h, y, yerr, Rhs_func_stiff)
|
189
|
+
if t > 0.04
|
190
|
+
arg = t + h
|
191
|
+
e1 = exp(-arg)
|
192
|
+
e2 = exp(-1000.0*arg)
|
193
|
+
u = 2.0*e1 - e2
|
194
|
+
del = ((y[0] - u)/y[0]).abs
|
195
|
+
delmax = GSL::MAX_DBL(del, delmax)
|
196
|
+
if del > (count + 1.0)*100.0*base_prec
|
197
|
+
printf(" STIFF(%20.17g) %20.17g %20.17g %8.4g\n", arg, y[0], u, del)
|
198
|
+
s += 1
|
199
|
+
end
|
200
|
+
end
|
201
|
+
count += 1
|
202
|
+
t += h
|
203
|
+
end
|
204
|
+
GSL::Test::test(s, "#{stepper.name}, stiff [0,5], max relative error = #{delmax}")
|
205
|
+
end
|
206
|
+
|
207
|
+
def test_stepper_err(type, hstart, base_prec)
|
208
|
+
h = hstart*1.0
|
209
|
+
y = GSL::Vector.alloc(1.0, 0.0)
|
210
|
+
yerr = GSL::Vector.alloc(2)
|
211
|
+
delmax = 0.0
|
212
|
+
errmax = 0.0
|
213
|
+
count = 0
|
214
|
+
s = 0
|
215
|
+
|
216
|
+
stepper = GSL::Odeiv::Step.alloc(type, 2)
|
217
|
+
|
218
|
+
t = 0.0
|
219
|
+
while t < M_PI
|
220
|
+
y1_t = y[1]
|
221
|
+
dy_exp = cos(t)*sin(h)-2*sin(t)*pow(sin(h/2),2.0);
|
222
|
+
status = stepper.apply(t, h, y, yerr, Rhs_func_sin)
|
223
|
+
dy_t = y[1] - y1_t;
|
224
|
+
del = (dy_t - dy_exp).abs
|
225
|
+
if t > 0.1 and t < 0.2
|
226
|
+
stat = (del > 10.0*yerr[1].abs + GSL::DBL_EPSILON*y[1].abs) ? 1 : 0
|
227
|
+
if stat != 0
|
228
|
+
delmax = del
|
229
|
+
errmax = yerr[1].abs
|
230
|
+
printf("SIN(%.18e) %.5e %.5e %e %e %e\n", t + h, y[1], dy_t, dy_exp, del, yerr[1]);
|
231
|
+
|
232
|
+
s += stat;
|
233
|
+
break;
|
234
|
+
end
|
235
|
+
end
|
236
|
+
count += 1
|
237
|
+
t += h
|
238
|
+
end
|
239
|
+
test(s, "#{stepper.name}, sine [0,pi], accurary of estimate error = #{delmax} vs #{errmax}")
|
240
|
+
end
|
241
|
+
|
242
|
+
def test_evolve_system_flat(step, sys, t0, t1, hstart, y, yfin, err_target, desc)
|
243
|
+
s = 0
|
244
|
+
h = hstart*1.0
|
245
|
+
t = t0*1.0
|
246
|
+
e = GSL::Odeiv::Evolve.alloc(sys.dimension)
|
247
|
+
while t < t1
|
248
|
+
t, h, status = e.apply(nil, step, sys, t, t1, h, y)
|
249
|
+
end
|
250
|
+
frac = ((y[1] - yfin[1])/yfin[1]).abs + ((y[0] - yfin[0])/yfin[0]).abs
|
251
|
+
if frac > 2.0*e.count*err_target
|
252
|
+
printf("FLAT t = %.5e y0 = %g y1= %g\n", t, y[0], y[1]);
|
253
|
+
s += 1
|
254
|
+
end
|
255
|
+
GSL::Test::test(s, "#{step.name}, #{desc}, evolve, no control, max relative error = #{frac}")
|
256
|
+
end
|
257
|
+
|
258
|
+
def test_evolve_system(type, sys, t0, t1, hstart, y, yfin, err_target, desc)
|
259
|
+
s = 0
|
260
|
+
t = t0*1.0
|
261
|
+
h = hstart*1.0
|
262
|
+
step = GSL::Odeiv::Step.alloc(type, sys.dimension)
|
263
|
+
c = GSL::Odeiv::Control.standard_alloc(0.0, err_target, 1.0, 1.0)
|
264
|
+
e = GSL::Odeiv::Evolve.alloc(sys.dimension)
|
265
|
+
while t < t1
|
266
|
+
t, h, status = e.apply(c, step, sys, t, t1, h, y)
|
267
|
+
end
|
268
|
+
frac = ((y[1] - yfin[1])/yfin[1]).abs + ((y[0] - yfin[0])/yfin[0]).abs
|
269
|
+
if frac > 2.0*e.count*err_target
|
270
|
+
printf("SYS t = %.5e h = %g y0 = %g y1= %g\n", t, h, y[0], y[1]);
|
271
|
+
s += 1
|
272
|
+
end
|
273
|
+
GSL::Test::test(s, "#{step.name}, #{desc}, evolve, standard control, relative error = #{frac}")
|
274
|
+
end
|
275
|
+
|
276
|
+
def test_evolve_exp(type, hstart, err)
|
277
|
+
h = hstart*1.0
|
278
|
+
y = GSL::Vector.alloc(1.0, 1.0)
|
279
|
+
eee = exp(5.0)
|
280
|
+
yfin = GSL::Vector.alloc(eee, eee)
|
281
|
+
test_evolve_system(type, Rhs_func_exp, 0.0, 5.0, h, y, yfin, err, "exp [0,5]")
|
282
|
+
end
|
283
|
+
|
284
|
+
def test_evolve_sin(type, hstart, err)
|
285
|
+
h = hstart*1.0
|
286
|
+
y = GSL::Vector.alloc(1.0, 0.0)
|
287
|
+
yfin = GSL::Vector.alloc(cos(2.0), sin(2.0))
|
288
|
+
test_evolve_system(type, Rhs_func_sin, 0.0, 2.0, h, y, yfin, err, "sin [0,2]")
|
289
|
+
end
|
290
|
+
|
291
|
+
def test_evolve_stiff1(type, hstart, err)
|
292
|
+
h = hstart*1.0
|
293
|
+
y = GSL::Vector.alloc(1.0, 0.0)
|
294
|
+
arg = 1.0
|
295
|
+
e1 = exp(-arg)
|
296
|
+
e2 = exp(-1000.0*arg)
|
297
|
+
yfin = GSL::Vector.alloc(2.0*e1 - e2, -e1 + e2)
|
298
|
+
test_evolve_system(type, Rhs_func_stiff, 0.0, 1.0, h, y, yfin, err, "stiff [0,1]")
|
299
|
+
end
|
300
|
+
|
301
|
+
def test_evolve_stiff5(type, hstart, err)
|
302
|
+
h = hstart*1.0
|
303
|
+
y = GSL::Vector.alloc(1.0, 0.0)
|
304
|
+
arg = 5.0
|
305
|
+
e1 = exp(-arg)
|
306
|
+
e2 = exp(-1000.0*arg)
|
307
|
+
yfin = GSL::Vector.alloc(2.0*e1 - e2, -e1 + e2)
|
308
|
+
less test_evolve_system(type, Rhs_func_stiff, 0.0, 5.0, h, y, yfin, err, "stiff [0,5]")
|
309
|
+
end
|
310
|
+
|
311
|
+
ptypes = [
|
312
|
+
{"type" => "rk2",
|
313
|
+
"h" => 1e-3},
|
314
|
+
{"type" => "rk2imp",
|
315
|
+
"h" => 1e-3},
|
316
|
+
{"type" => "rk4",
|
317
|
+
"h" => 1e-3},
|
318
|
+
{"type" => "rk4imp",
|
319
|
+
"h" => 1e-3},
|
320
|
+
{"type" => "rkf45",
|
321
|
+
"h" => 1e-3},
|
322
|
+
{"type" => "rk8pd",
|
323
|
+
"h" => 1e-3},
|
324
|
+
{"type" => "rkck",
|
325
|
+
"h" => 1e-3},
|
326
|
+
{"type" => "bsimp",
|
327
|
+
"h" => 1e-3},
|
328
|
+
{"type" => "gear1",
|
329
|
+
"h" => 1e-3},
|
330
|
+
# {"type" => "gear2",
|
331
|
+
# "h" => 1e-3}
|
332
|
+
]
|
333
|
+
|
334
|
+
GSL::IEEE::env_setup()
|
335
|
+
|
336
|
+
ptypes.each do |hash|
|
337
|
+
test_stepper_err(hash["type"], hash["h"], GSL::SQRT_DBL_EPSILON)
|
338
|
+
end
|
339
|
+
|
340
|
+
ptypes.each do |hash|
|
341
|
+
# test_stepper_linear(hash["type"], hash["h"], GSL::SQRT_DBL_EPSILON)
|
342
|
+
# test_stepper_sin(hash["type"], hash["h"], GSL::SQRT_DBL_EPSILON)
|
343
|
+
test_stepper_sin(hash["type"], hash["h"]/10, 1e-8)
|
344
|
+
# test_stepper_exp(hash["type"], hash["h"], GSL::SQRT_DBL_EPSILON)
|
345
|
+
# test_stepper_stiff(hash["type"], hash["h"], GSL::SQRT_DBL_EPSILON)
|
346
|
+
end
|
347
|
+
|
348
|
+
ptypes.each do |hash|
|
349
|
+
# test_evolve_exp(hash["type"], hash["h"], GSL::SQRT_DBL_EPSILON)
|
350
|
+
test_evolve_sin(hash["type"], hash["h"], GSL::SQRT_DBL_EPSILON)
|
351
|
+
# test_evolve_stiff1(hash["type"], hash["h"], GSL::SQRT_DBL_EPSILON)
|
352
|
+
# test_evolve_stiff5(hash["type"], hash["h"], GSL::SQRT_DBL_EPSILON)
|
353
|
+
end
|