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
@@ -0,0 +1,347 @@
|
|
1
|
+
#
|
2
|
+
# = GSL::Vector::Complex
|
3
|
+
#
|
4
|
+
# == {}[link:index.html"name="1] Class methods
|
5
|
+
# ---
|
6
|
+
# * GSL::Vector::Complex.alloc(size)
|
7
|
+
# * GSL::Vector::Complex.alloc(re, im)
|
8
|
+
# * GSL::Vector::Complex.alloc(z0, z1, z2, ...)
|
9
|
+
# * GSL::Vector::Complex.alloc( ... )
|
10
|
+
# * GSL::Vector::Complex[ ... ]
|
11
|
+
#
|
12
|
+
# Constructors.
|
13
|
+
#
|
14
|
+
# 1. With two (real) vectors:
|
15
|
+
# >> re = Vector[0..3]
|
16
|
+
# >> im = Vector[5..8]
|
17
|
+
# >> z = Vector::Complex[re, im]
|
18
|
+
# [ [0.000e+00 5.000e+00] [1.000e+00 6.000e+00] [2.000e+00 7.000e+00] [3.000e+00 8.000e+00] ]
|
19
|
+
#
|
20
|
+
# 1. With arrays
|
21
|
+
# >> z = Vector::Complex.alloc([0, 1], [2, 5], [-3, 4])
|
22
|
+
# [ [0.000e+00 1.000e+00] [2.000e+00 5.000e+00] [-3.000e+00 4.000e+00] ]
|
23
|
+
#
|
24
|
+
# ---
|
25
|
+
# * GSL::Vector::Complex.calloc(n)
|
26
|
+
#
|
27
|
+
# Creates a complex vector of length <tt>n</tt> and initializes all
|
28
|
+
# the elements of the vector to zero.
|
29
|
+
#
|
30
|
+
# == {}[link:index.html"name="2] Instance methods
|
31
|
+
# === {}[link:index.html"name="2.1] Accessing vector elements
|
32
|
+
# ---
|
33
|
+
# * GSL::Vector::Complex#get(args)
|
34
|
+
# * GSL::Vector::Complex#[args]
|
35
|
+
#
|
36
|
+
# Returns elements(s) of the complex vector <tt>self</tt> if <tt>args</tt> is a
|
37
|
+
# single Fixnum, a single Array of Fixnums, or a single GSL::Permutation (or
|
38
|
+
# GSL::Index). For all other <tt>args</tt>, the parameters are treated as
|
39
|
+
# with <tt>Vector#subvector</tt> and a <tt>Vector::View</tt> is returned.
|
40
|
+
#
|
41
|
+
# Example:
|
42
|
+
# >> z
|
43
|
+
# [ [0.000e+00 1.000e+00] [2.000e+00 5.000e+00] [-3.000e+00 4.000e+00] ]
|
44
|
+
# => #<GSL::Vector::Complex:0x6c5b9c>
|
45
|
+
# >> z[1]
|
46
|
+
# => GSL::Complex
|
47
|
+
# [ 2.000000 5.000000 ]
|
48
|
+
# >> z[-1]
|
49
|
+
# => GSL::Complex
|
50
|
+
# [ -3.000000 4.000000 ]
|
51
|
+
# >> z[0, 2]
|
52
|
+
# [ [0.000e+00 1.000e+00] [-3.000e+00 4.000e+00] ]
|
53
|
+
# => #<GSL::Vector::Complex:0x6bfbac>
|
54
|
+
#
|
55
|
+
# ---
|
56
|
+
# * GSL::Vector::Complex#set(args, val)
|
57
|
+
# * GSL::Vector::Complex#[args]=val
|
58
|
+
#
|
59
|
+
# If <tt>args</tt> is empty, behaves as <tt>#set_all</tt> and <tt>val</tt> must be a
|
60
|
+
# <tt>[re,im]</tt> <tt>Array</tt>, <tt>Float</tt>, <tt>Integer</tt>, or
|
61
|
+
# <tt>GSL::Complex</tt>.
|
62
|
+
#
|
63
|
+
# If <tt>args</tt> is a single <tt>Fixnum</tt>, <tt>i</tt>, sets the <tt>i</tt>-th
|
64
|
+
# element of the vector <tt>self</tt> to <tt>val</tt>, which must be a
|
65
|
+
# <tt>[re,im]</tt> <tt>Array</tt>, <tt>Float</tt>, <tt>Integer</tt>, or
|
66
|
+
# <tt>GSL::Complex</tt>.
|
67
|
+
#
|
68
|
+
# All other <tt>args</tt> specify a subvector (as with <tt>#subvector</tt>) whose
|
69
|
+
# elements are assigned from <tt>val</tt>. In this case, <tt>val</tt> can be an
|
70
|
+
# <tt>Array</tt>, <tt>Range</tt>, <tt>GSL::Vector::Complex</tt>, or one of the classes
|
71
|
+
# listed in the previous cases.
|
72
|
+
#
|
73
|
+
# NOTE: GSL does not provide a vector copy function that properly copies data
|
74
|
+
# across overlapping memory regions, so watch out if assigning to part of a
|
75
|
+
# Vector from another part of itself (see <tt>#set</tt> example of
|
76
|
+
# {GSL::Vector}[link:files/rdoc/vector_rdoc.html]).
|
77
|
+
#
|
78
|
+
# === {}[link:index.html"name="2.2] Initializing vector elements
|
79
|
+
# ---
|
80
|
+
# * GSL::Vector::Complex#set_all(z)
|
81
|
+
#
|
82
|
+
# Sets all the elements of the complex vector <tt>self</tt> to the complex <tt>z</tt>.
|
83
|
+
# ---
|
84
|
+
# * GSL::Vector::Complex#set_zero
|
85
|
+
#
|
86
|
+
# Sets all the elements of the vector <tt>self</tt> to zero.
|
87
|
+
# ---
|
88
|
+
# * GSL::Vector::Complex#set_real(x)
|
89
|
+
# * GSL::Vector::Complex#real=(x)
|
90
|
+
# * GSL::Vector::Complex#re=(x)
|
91
|
+
#
|
92
|
+
# Sets the real component of all elements of the vector <tt>self</tt> to
|
93
|
+
# <tt>x</tt>. Currently, <tt>x</tt> must be a scalar, but a future Ruby GSL
|
94
|
+
# version could accept a GSL::Vector.
|
95
|
+
# ---
|
96
|
+
# * GSL::Vector::Complex#set_imag(x)
|
97
|
+
# * GSL::Vector::Complex#imag=(x)
|
98
|
+
# * GSL::Vector::Complex#im=(x)
|
99
|
+
#
|
100
|
+
# Sets the imaginary component of all elements of the vector <tt>self</tt> to
|
101
|
+
# <tt>x</tt>. Currently, <tt>x</tt> must be a scalar, but a future Ruby GSL
|
102
|
+
# version could accept a GSL::Vector.
|
103
|
+
#
|
104
|
+
# === {}[link:index.html"name="2.3] Vector Properties
|
105
|
+
# ---
|
106
|
+
# * GSL::Vector::Complex#size
|
107
|
+
# * GSL::Vector::Complex#len
|
108
|
+
# * GSL::Vector::Complex#length
|
109
|
+
#
|
110
|
+
# Return the vector length.
|
111
|
+
#
|
112
|
+
# ---
|
113
|
+
# * GSL::Vector::Complex#stride
|
114
|
+
#
|
115
|
+
# Return the vector stride.
|
116
|
+
#
|
117
|
+
# === {}[link:index.html"name="2.4] Iterators
|
118
|
+
# ---
|
119
|
+
# * GSL::Vector::Complex#each
|
120
|
+
# * GSL::Vector::Complex#each_index
|
121
|
+
# * GSL::Vector::Complex#collect
|
122
|
+
# * GSL::Vector::Complex#map
|
123
|
+
# * GSL::Vector::Complex#collect!
|
124
|
+
# * GSL::Vector::Complex#map!
|
125
|
+
#
|
126
|
+
#
|
127
|
+
# === {}[link:index.html"name="2.5] Reordering Elements
|
128
|
+
# <tt>GSL::Vector::Complex</tt> provides four methods for shifting the frequency
|
129
|
+
# domain data between <b>FFT order</b>, shown in the table in the ((<Overview of
|
130
|
+
# complex data FFTs|URL:fft.html#2.1>)), and <b>natural order</b>, which has the
|
131
|
+
# most negative freqeuncy component first, the zero frequency component in the
|
132
|
+
# middle, and the most positive frequency component last. For more information
|
133
|
+
# on Ruby/GSL and FFTs, see {Fast Fourier Transforms}[link:files/rdoc/fft_rdoc.html].
|
134
|
+
#
|
135
|
+
# ---
|
136
|
+
# * GSL::Vector::Complex#fftshift
|
137
|
+
# * GSL::Vector::Complex#fftshift!
|
138
|
+
#
|
139
|
+
# Shifts the data of <tt>self</tt> from FFT order to natural order. The
|
140
|
+
# <tt>#fftshift</tt> method leaves <tt>self</tt> unmodified and returns a new
|
141
|
+
# <tt>GSL::Vector::Complex</tt> object containing the shifted data. The
|
142
|
+
# <tt>#fftshift!</tt> method modifies <tt>self</tt> in-place and returns
|
143
|
+
# <tt>self</tt>. Note that <tt>#fftshift</tt> and <tt>#ifftshift</tt> are equivalent
|
144
|
+
# for even lengths, but not for odd lengths.
|
145
|
+
#
|
146
|
+
# ---
|
147
|
+
# * GSL::Vector::Complex#ifftshift
|
148
|
+
# * GSL::Vector::Complex#ifftshift!
|
149
|
+
#
|
150
|
+
# Shifts the data of <tt>self</tt> from natural order to FFT order. The
|
151
|
+
# <tt>#ifftshift</tt> method leaves <tt>self</tt> unmodified and returns a new
|
152
|
+
# <tt>GSL::Vector::Complex</tt> object containing the shifted data. The
|
153
|
+
# <tt>#ifftshift!</tt> method modifies <tt>self</tt> in-place and returns
|
154
|
+
# <tt>self</tt>. Note that <tt>#fftshift</tt> and <tt>#ifftshift</tt> are equivalent
|
155
|
+
# for even lengths, but not for odd lengths.
|
156
|
+
#
|
157
|
+
# === {}[link:index.html"name="2.6] Arithmetic
|
158
|
+
# ---
|
159
|
+
# * GSL::Vector::Complex#+(other)
|
160
|
+
# * GSL::Vector::Complex#-(other)
|
161
|
+
# * GSL::Vector::Complex#*(other)
|
162
|
+
# * GSL::Vector::Complex#/(other)
|
163
|
+
# * GSL::Vector::Complex#add(other)
|
164
|
+
# * GSL::Vector::Complex#sub(other)
|
165
|
+
# * GSL::Vector::Complex#mul(other)
|
166
|
+
# * GSL::Vector::Complex#div(other)
|
167
|
+
#
|
168
|
+
# Returns a new <tt>GSL::Vector::Complex</tt> instance containing the result of
|
169
|
+
# the appropriate arithmetic operation on <tt>self</tt> and <tt>other</tt>. The
|
170
|
+
# inputs are unchanged. The <tt>other</tt> parameter may be a scalar,
|
171
|
+
# <tt>{GSL::Vector}[link:files/rdoc/vector_rdoc.html]</tt>, or <tt>GSL::Vector::Complex</tt>.
|
172
|
+
#
|
173
|
+
# ---
|
174
|
+
# * GSL::Vector::Complex#+=(other)
|
175
|
+
# * GSL::Vector::Complex#-=(other)
|
176
|
+
# * GSL::Vector::Complex#*=(other)
|
177
|
+
# * GSL::Vector::Complex#/=(other)
|
178
|
+
# * GSL::Vector::Complex#add!(other)
|
179
|
+
# * GSL::Vector::Complex#sub!(other)
|
180
|
+
# * GSL::Vector::Complex#mul!(other)
|
181
|
+
# * GSL::Vector::Complex#div!(other)
|
182
|
+
#
|
183
|
+
# Modifies <tt>self</tt> in place to contain the result of the appropriate
|
184
|
+
# arithmetic operation on <tt>self</tt> and <tt>other</tt>. The <tt>other</tt>
|
185
|
+
# parameter may be a scalar, <tt>{GSL::Vector}[link:files/rdoc/vector_rdoc.html]</tt>, or
|
186
|
+
# <tt>GSL::Vector::Complex</tt>.
|
187
|
+
#
|
188
|
+
# === {}[link:index.html"name="2.7] Reading and writing vectors
|
189
|
+
# ---
|
190
|
+
# * GSL::Vector::Complex#fwite(io)
|
191
|
+
# * GSL::Vector::Complex#fread(io)
|
192
|
+
# * GSL::Vector::Complex#fprintf(io, format)
|
193
|
+
# * GSL::Vector::Complex#fscanf(io)
|
194
|
+
#
|
195
|
+
#
|
196
|
+
# === {}[link:index.html"name="2.8] Functions
|
197
|
+
# ---
|
198
|
+
# * GSL::Vector::Complex#conj
|
199
|
+
# * GSL::Vector::Complex#conjugate
|
200
|
+
#
|
201
|
+
# Returns a new <tt>GSL::Vector::Complex</tt> that is the complex conjugate of
|
202
|
+
# <tt>self</tt>.
|
203
|
+
#
|
204
|
+
# ---
|
205
|
+
# * GSL::Vector::Complex#conj!
|
206
|
+
# * GSL::Vector::Complex#conjugate!
|
207
|
+
#
|
208
|
+
# Conjugates <tt>self</tt> in-place and returns <tt>self</tt>.
|
209
|
+
#
|
210
|
+
# ---
|
211
|
+
# * GSL::Vector::Complex#arg
|
212
|
+
# * GSL::Vector::Complex#angle
|
213
|
+
# * GSL::Vector::Complex#phase
|
214
|
+
#
|
215
|
+
# Calculates the argument (i.e. phase angle in radians) of each of the
|
216
|
+
# complex elements of the vector <tt>self</tt> and returns a real vector.
|
217
|
+
#
|
218
|
+
# ---
|
219
|
+
# * GSL::Vector::Complex#abs2
|
220
|
+
#
|
221
|
+
# Calculates the squared magnitude of the complex elements of the vector
|
222
|
+
# <tt>self</tt> and returns a real vector.
|
223
|
+
#
|
224
|
+
# ---
|
225
|
+
# * GSL::Vector::Complex#abs
|
226
|
+
# * GSL::Vector::Complex#amp
|
227
|
+
#
|
228
|
+
# Calculates the magnitude of the complex elements of the vector <tt>self</tt>
|
229
|
+
# and returns a real vector.
|
230
|
+
#
|
231
|
+
# ---
|
232
|
+
# * GSL::Vector::Complex#logabs
|
233
|
+
#
|
234
|
+
# Calculates the natural logarithm of the magnitude of the complex elements
|
235
|
+
# of the vector <tt>self</tt> and returns a real vector.
|
236
|
+
#
|
237
|
+
# ---
|
238
|
+
# * GSL::Vector::Complex#sqrt
|
239
|
+
#
|
240
|
+
# Calculates the square root of the complex elements of the vector <tt>self</tt>
|
241
|
+
# and returns a new complex vector.
|
242
|
+
#
|
243
|
+
# ---
|
244
|
+
# * GSL::Vector::Complex#exp
|
245
|
+
# * GSL::Vector::Complex#pow(a)
|
246
|
+
# * GSL::Vector::Complex#log
|
247
|
+
# * GSL::Vector::Complex#log10
|
248
|
+
# * GSL::Vector::Complex#log_b(base)
|
249
|
+
# * GSL::Vector::Complex#sin
|
250
|
+
# * GSL::Vector::Complex#cos
|
251
|
+
# * GSL::Vector::Complex#tan
|
252
|
+
# * GSL::Vector::Complex#sec
|
253
|
+
# * GSL::Vector::Complex#csc
|
254
|
+
# * GSL::Vector::Complex#cot
|
255
|
+
# * GSL::Vector::Complex#arcsin
|
256
|
+
# * GSL::Vector::Complex#arccos
|
257
|
+
# * GSL::Vector::Complex#arctan
|
258
|
+
# * GSL::Vector::Complex#arcsec
|
259
|
+
# * GSL::Vector::Complex#arccsc
|
260
|
+
# * GSL::Vector::Complex#arccot
|
261
|
+
# * GSL::Vector::Complex#sinh
|
262
|
+
# * GSL::Vector::Complex#cosh
|
263
|
+
# * GSL::Vector::Complex#tanh
|
264
|
+
# * GSL::Vector::Complex#sech
|
265
|
+
# * GSL::Vector::Complex#csch
|
266
|
+
# * GSL::Vector::Complex#coth
|
267
|
+
# * GSL::Vector::Complex#arcsinh
|
268
|
+
# * GSL::Vector::Complex#arccosh
|
269
|
+
# * GSL::Vector::Complex#arctanh
|
270
|
+
# * GSL::Vector::Complex#arcsech
|
271
|
+
# * GSL::Vector::Complex#arccsch
|
272
|
+
# * GSL::Vector::Complex#arccoth
|
273
|
+
#
|
274
|
+
#
|
275
|
+
# === {}[link:index.html"name="2.9] Statistics
|
276
|
+
# ---
|
277
|
+
# * GSL::Vector::Complex#sum
|
278
|
+
#
|
279
|
+
# Returns a <tt>GSL::Complex</tt> object representing the sum of all elements of
|
280
|
+
# <tt>self</tt>.
|
281
|
+
# ---
|
282
|
+
# * GSL::Vector::Complex#mean
|
283
|
+
#
|
284
|
+
# Returns a <tt>GSL::Complex</tt> object representing the mean of all elements
|
285
|
+
# of <tt>self</tt>.
|
286
|
+
# ---
|
287
|
+
# * GSL::Vector::Complex#tss
|
288
|
+
#
|
289
|
+
# Returns the total sum of squares about <tt>self.mean</tt>. This is a real
|
290
|
+
# number, i.e. a <tt>Float</tt>.
|
291
|
+
# ---
|
292
|
+
# * GSL::Vector::Complex#tss_m(mean)
|
293
|
+
#
|
294
|
+
# Returns the total sum of squares about <tt>mean</tt>. This is a real number,
|
295
|
+
# i.e. a <tt>Float.</tt>
|
296
|
+
# ---
|
297
|
+
# * GSL::Vector::Complex#variance
|
298
|
+
#
|
299
|
+
# Returns the variance of <tt>self</tt>. This is a real number, i.e. a
|
300
|
+
# <tt>Float.</tt>
|
301
|
+
# ---
|
302
|
+
# * GSL::Vector::Complex#variance_m(mean)
|
303
|
+
#
|
304
|
+
# Returns the variance of <tt>self</tt> around <tt>mean</tt>. This is a real
|
305
|
+
# number, i.e. a <tt>Float</tt>.
|
306
|
+
# ---
|
307
|
+
# * GSL::Vector::Complex#variance_fm(mean)
|
308
|
+
#
|
309
|
+
# Returns the variance of <tt>self</tt> around the fixed mean <tt>mean</tt>. This
|
310
|
+
# is a real number, i.e. a <tt>Float</tt>.
|
311
|
+
# ---
|
312
|
+
# * GSL::Vector::Complex#sd
|
313
|
+
#
|
314
|
+
# Returns the standard deviation of <tt>self</tt>. This is a real number, i.e.
|
315
|
+
# a <tt>Float</tt>.
|
316
|
+
# ---
|
317
|
+
# * GSL::Vector::Complex#sd_m(mean)
|
318
|
+
#
|
319
|
+
# Returns the standard deviation of <tt>self</tt> around <tt>mean</tt>. This is a
|
320
|
+
# real number, i.e. a <tt>Float</tt>.
|
321
|
+
# ---
|
322
|
+
# * GSL::Vector::Complex#sd_fm(mean)
|
323
|
+
#
|
324
|
+
# Returns the standard deviation of <tt>self</tt> around the fixed mean
|
325
|
+
# <tt>mean</tt>. This is a real number, i.e. a <tt>Float</tt>.
|
326
|
+
#
|
327
|
+
# == {}[link:index.html"name="3] Data Conversions
|
328
|
+
# ---
|
329
|
+
# * GSL::Vector#to_complex
|
330
|
+
# * GSL::Vector#to_complex2
|
331
|
+
#
|
332
|
+
# Create a complex vector from a real vector.
|
333
|
+
#
|
334
|
+
# >> v = Vector[1..4]
|
335
|
+
# => GSL::Vector
|
336
|
+
# [ 1.000e+00 2.000e+00 3.000e+00 4.000e+00 ]
|
337
|
+
# >> v.to_complex
|
338
|
+
# [ [1.000e+00 0.000e+00] [2.000e+00 0.000e+00] [3.000e+00 0.000e+00] [4.000e+00 0.000e+00] ]
|
339
|
+
# => #<GSL::Vector::Complex:0x6d7d24>
|
340
|
+
# >> v.to_complex2
|
341
|
+
# [ [1.000e+00 2.000e+00] [3.000e+00 4.000e+00] ]
|
342
|
+
# => #<GSL::Vector::Complex:0x6d6424>
|
343
|
+
#
|
344
|
+
# {Reference index}[link:files/rdoc/ref_rdoc.html]
|
345
|
+
# {top}[link:files/rdoc/index_rdoc.html]
|
346
|
+
#
|
347
|
+
#
|
data/rdoc/wavelet.rdoc
ADDED
@@ -0,0 +1,218 @@
|
|
1
|
+
#
|
2
|
+
# = Discrete Wavelet Transforms
|
3
|
+
# This chapter describes functions for performing Discrete Wavelet Transforms
|
4
|
+
# (DWTs).
|
5
|
+
# The library includes wavelets for real data in both one and two dimensions.
|
6
|
+
#
|
7
|
+
# Contents:
|
8
|
+
# 1. {Definitions}[link:files/rdoc/rdoc/wavelet_rdoc.html#1]
|
9
|
+
# 1. {Initialization}[link:files/rdoc/rdoc/wavelet_rdoc.html#2]
|
10
|
+
# 1. {Transform methods}[link:files/rdoc/rdoc/wavelet_rdoc.html#3]
|
11
|
+
# 1. {Wavelet transforms in one dimension}[link:files/rdoc/rdoc/wavelet_rdoc.html#3.1]
|
12
|
+
# 1. {Wavelet transforms in two dimension}[link:files/rdoc/rdoc/wavelet_rdoc.html#3.2]
|
13
|
+
# 1. {Examples}[link:files/rdoc/rdoc/wavelet_rdoc.html#4]
|
14
|
+
#
|
15
|
+
# == {}[link:index.html"name="1] Definitions
|
16
|
+
#
|
17
|
+
# The continuous wavelet transform and its inverse are defined by the relations,
|
18
|
+
# and,
|
19
|
+
# where the basis functionspsi_{s,tau} are obtained by scaling and translation
|
20
|
+
# from a single function, referred to as the mother wavelet.
|
21
|
+
#
|
22
|
+
# The discrete version of the wavelet transform acts on evenly sampled data,
|
23
|
+
# with fixed scaling and translation steps (s, tau). The frequency and time
|
24
|
+
# axes are sampled dyadically on scales of 2^j through a level parameter j.
|
25
|
+
# The resulting family of functions {psi_{j,n}} constitutes an orthonormal
|
26
|
+
# basis for square-integrable signals.
|
27
|
+
#
|
28
|
+
# The discrete wavelet transform is an O(N) algorithm, and is also referred to as
|
29
|
+
# the fast wavelet transform.
|
30
|
+
#
|
31
|
+
# == {}[link:index.html"name="2] Initialization
|
32
|
+
#
|
33
|
+
# ---
|
34
|
+
# * GSL::Wavelet.alloc(type, k)
|
35
|
+
# * GSL::Wavelet.alloc(type, k)
|
36
|
+
#
|
37
|
+
# This function allocates and initializes a wavelet object of type <tt>type</tt>.
|
38
|
+
# The parameter <tt>k</tt> selects the specific member of the wavelet family.
|
39
|
+
#
|
40
|
+
# The wavelet types are given by a constant (Fixnum) or a string as followings.
|
41
|
+
#
|
42
|
+
# * <tt>GSL::Wavelet::DAUBECHIES</tt>, or <tt>"daubechies"</tt>
|
43
|
+
# * <tt>GSL::Wavelet::DAUBECHIES_CENTERED</tt>, or <tt>"daubechies_centered"</tt>
|
44
|
+
# * <tt>GSL::Wavelet::HAAR</tt>, or <tt>"haar"</tt>
|
45
|
+
# * <tt>GSL::Wavelet::HAAR_CENTERED</tt>, or <tt>"haar_centered"</tt>
|
46
|
+
# * <tt>GSL::Wavelet::BSPLINE</tt>, or <tt>"bspline"</tt>
|
47
|
+
# * <tt>GSL::Wavelet::BSPLINE_CENTERED</tt>, or <tt>"bspline_centered"</tt>
|
48
|
+
#
|
49
|
+
# The centered forms of the wavelets align the coefficients of the various
|
50
|
+
# sub-bands on edges. Thus the resulting visualization of the coefficients
|
51
|
+
# of the wavelet transform in the phase plane is easier to understand.
|
52
|
+
#
|
53
|
+
# ---
|
54
|
+
# * GSL::Wavelet#name
|
55
|
+
#
|
56
|
+
# This method returns a String of the name of the wavelet family for <tt>self</tt>.
|
57
|
+
#
|
58
|
+
# ---
|
59
|
+
# * GSL::Wavelet::Workspace.alloc(n)
|
60
|
+
#
|
61
|
+
# The GSL::Wavelet::Workspace object contains scratch space of the same size as
|
62
|
+
# the input data, for holding intermediate results during the transform.
|
63
|
+
# This method allocates a workspace for the discrete wavelet transform.
|
64
|
+
# To perform a one-dimensional transform on <tt>n</tt> elements, a workspace of
|
65
|
+
# size <tt>n</tt> must be provided. For two-dimensional transforms of n-by-n
|
66
|
+
# matrices it is sufficient to allocate a workspace of size <tt>n</tt>,
|
67
|
+
# since the transform operates on individual rows and columns.
|
68
|
+
#
|
69
|
+
# == {}[link:index.html"name="3] Transform Methods
|
70
|
+
# === {}[link:index.html"name="3.1] Wavelet transforms in one dimension
|
71
|
+
#
|
72
|
+
# ---
|
73
|
+
# * GSL::Wavelet.transform(w, v, dir = GSL::Wavelet::FORWARD, work)
|
74
|
+
# * GSL::Wavelet.transform(w, v, dir)
|
75
|
+
# * GSL::Wavelet.transform(w, v, work)
|
76
|
+
# * GSL::Wavelet.transform(w, v)
|
77
|
+
# * GSL::Wavelet#transform(v, dir = GSL::Wavelet::FORWARD, work)
|
78
|
+
# * GSL::Wavelet#transform(v, dir)
|
79
|
+
# * GSL::Wavelet#transform(v, work)
|
80
|
+
# * GSL::Wavelet#transform(v)
|
81
|
+
# * GSL::Wavelet.transform_forward(w, v, work)
|
82
|
+
# * GSL::Wavelet.transform_forward(w, v)
|
83
|
+
# * GSL::Wavelet#transform_forward(v, work)
|
84
|
+
# * GSL::Wavelet#transform_forward(v)
|
85
|
+
# * GSL::Wavelet.transform_inverse(w, v, work)
|
86
|
+
# * GSL::Wavelet.transform_inverse(w, v)
|
87
|
+
# * GSL::Wavelet#transform_inverse(v, work)
|
88
|
+
# * GSL::Wavelet#transform_inverse(v)
|
89
|
+
# * GSL::Vector#wavelet_transform(w, ...)
|
90
|
+
# * GSL::Vector#wavelet_transform_forward(w, ...)
|
91
|
+
# * GSL::Vector#wavelet_transform_inverse(w, ...)
|
92
|
+
#
|
93
|
+
# These methods compute forward and inverse discrete wavelet transforms
|
94
|
+
# of the vector <tt>v</tt>. The length of the transform is restricted to powers
|
95
|
+
# of two. For the transform version of the function the argument dir can be
|
96
|
+
# either GSL::Wavelet::FORWARD (+1) or GSL::Wavelet::BACKWARD (-1).
|
97
|
+
# A workspace <tt>work</tt> can be omitted.
|
98
|
+
#
|
99
|
+
# If <tt>v</tt> is a <tt>GSL::Matrix</tt> object, methods for 2d-transforms
|
100
|
+
# are called.
|
101
|
+
#
|
102
|
+
# For the forward transform, the elements of the original vector are replaced by
|
103
|
+
# the discrete wavelet transform f_i -> w_{j,k} in a packed triangular storage
|
104
|
+
# layout, where j is the index of the level j = 0 ... J-1 and k is the index of
|
105
|
+
# the coefficient within each level, k = 0 ... (2^j)-1. The total number of
|
106
|
+
# levels is J = log_2(n).
|
107
|
+
#
|
108
|
+
# These methods return a transformed data, and the input vector is not changed.
|
109
|
+
#
|
110
|
+
# === {}[link:index.html"name="3.2] Wavelet transforms in two dimension
|
111
|
+
# ---
|
112
|
+
# * GSL::Wavelet.transform(same as the methods for one dimensional transforms)
|
113
|
+
# * GSL::Wavelet.transform_matrix()
|
114
|
+
# * GSL::Wavelet2d.transform()
|
115
|
+
# * GSL::Wavelet#transform(same as the methods for one dimensional transforms)
|
116
|
+
# * GSL::Wavelet#transform_matrix()
|
117
|
+
# * GSL::Wavelet2d#transform()
|
118
|
+
#
|
119
|
+
#
|
120
|
+
# ---
|
121
|
+
# * GSL::Wavelet.transform_forward()
|
122
|
+
# * GSL::Wavelet.transform_matrix_forward()
|
123
|
+
# * GSL::Wavelet2d.transform_forward()
|
124
|
+
# * GSL::Wavelet#transform_forward()
|
125
|
+
# * GSL::Wavelet#transform_matrix_forward()
|
126
|
+
# * GSL::Wavelet2d#transform_forward()
|
127
|
+
#
|
128
|
+
#
|
129
|
+
# ---
|
130
|
+
# * GSL::Wavelet.transform_inverse()
|
131
|
+
# * GSL::Wavelet.transform_matrix_inverse()
|
132
|
+
# * GSL::Wavelet2d.transform_inverse()
|
133
|
+
# * GSL::Wavelet#transform_inverse()
|
134
|
+
# * GSL::Wavelet#transform_matrix_inverse()
|
135
|
+
# * GSL::Wavelet2d#transform_inverse()
|
136
|
+
#
|
137
|
+
#
|
138
|
+
# ---
|
139
|
+
# * GSL::Wavelet.nstransform(same as the methods for one dimensional nstransforms)
|
140
|
+
# * GSL::Wavelet.nstransform_matrix()
|
141
|
+
# * GSL::Wavelet2d.nstransform()
|
142
|
+
# * GSL::Wavelet#nstransform(same as the methods for one dimensional nstransforms)
|
143
|
+
# * GSL::Wavelet#nstransform_matrix()
|
144
|
+
# * GSL::Wavelet2d#nstransform()
|
145
|
+
#
|
146
|
+
#
|
147
|
+
# ---
|
148
|
+
# * GSL::Wavelet.nstransform_forward()
|
149
|
+
# * GSL::Wavelet.nstransform_matrix_forward()
|
150
|
+
# * GSL::Wavelet2d.nstransform_forward()
|
151
|
+
# * GSL::Wavelet#nstransform_forward()
|
152
|
+
# * GSL::Wavelet#nstransform_matrix_forward()
|
153
|
+
# * GSL::Wavelet2d#nstransform_forward()
|
154
|
+
#
|
155
|
+
#
|
156
|
+
# ---
|
157
|
+
# * GSL::Wavelet.nstransform_inverse()
|
158
|
+
# * GSL::Wavelet.nstransform_matrix_inverse()
|
159
|
+
# * GSL::Wavelet2d.nstransform_inverse()
|
160
|
+
# * GSL::Wavelet#nstransform_inverse()
|
161
|
+
# * GSL::Wavelet#nstransform_matrix_inverse()
|
162
|
+
# * GSL::Wavelet2d#nstransform_inverse()
|
163
|
+
#
|
164
|
+
#
|
165
|
+
# == {}[link:index.html"name="4] Example
|
166
|
+
# #!/usr/bin/env ruby
|
167
|
+
# require("gsl")
|
168
|
+
#
|
169
|
+
# n = 256
|
170
|
+
# nc = 20
|
171
|
+
#
|
172
|
+
# data = Vector.alloc(n)
|
173
|
+
# data.fscanf("ecg.dat")
|
174
|
+
#
|
175
|
+
# w = GSL::Wavelet.alloc("daubechies", 4)
|
176
|
+
# work = GSL::Wavelet::Workspace.alloc(n)
|
177
|
+
#
|
178
|
+
# ##### Choose as you like...
|
179
|
+
# data2 = w.transform(data, Wavelet::FORWARD, work)
|
180
|
+
# #data2 = w.transform(data, work)
|
181
|
+
# #data2 = w.transform(data)
|
182
|
+
# #data2 = w.transform(data, Wavelet::FORWARD)
|
183
|
+
# #data2 = w.transform_forward(data, work)
|
184
|
+
# #data2 = w.transform_forward(data)
|
185
|
+
# #data2 = Wavelet.transform(w, data, Wavelet::FORWARD, work)
|
186
|
+
# #data2 = Wavelet.transform(w, data, Wavelet::FORWARD)
|
187
|
+
# #data2 = Wavelet.transform(w, data, work)
|
188
|
+
# #data2 = Wavelet.transform_forward(w, data)
|
189
|
+
# #data2 = data.wavelet_transform(w, Wavelet::FORWARD, work)
|
190
|
+
# #data2 = data.wavelet_transform_forward(w, work)
|
191
|
+
#
|
192
|
+
# perm = data2.abs.sort_index
|
193
|
+
#
|
194
|
+
# i = 0
|
195
|
+
# while (i + nc) < n
|
196
|
+
# data2[perm[i]] = 0.0
|
197
|
+
# i += 1
|
198
|
+
# end
|
199
|
+
#
|
200
|
+
# #data3 = w.transform(data2, Wavelet::BACKWARD, work)
|
201
|
+
# #data3 = w.transform(data2, Wavelet::BACKWARD)
|
202
|
+
# #data3 = w.transform_inverse(data2, work)
|
203
|
+
# #data3 = w.transform_inverse(data2)
|
204
|
+
# #data3 = Wavelet.transform(w, data2, Wavelet::BACKWARD, work)
|
205
|
+
# #data3 = Wavelet.transform(w, data2, Wavelet::BACKWARD)
|
206
|
+
# #data3 = Wavelet.transform_inverse(w, data2, work)
|
207
|
+
# data3 = Wavelet.transform_inverse(w, data2)
|
208
|
+
# #data3 = data2.wavelet_transform(w, Wavelet::BACKWARD, work)
|
209
|
+
# #data3 = data2.wavelet_transform_inverse(w, work)
|
210
|
+
#
|
211
|
+
# #If you have GNU graph utility...
|
212
|
+
# GSL::graph(nil, data, data3, "-T X -C -g 3")
|
213
|
+
#
|
214
|
+
# {prev}[link:files/rdoc/rdoc/fft_rdoc.html]
|
215
|
+
# {next}[link:files/rdoc/rdoc/integration_rdoc.html]
|
216
|
+
#
|
217
|
+
# {back}[link:files/rdoc/rdoc/index_rdoc.html]
|
218
|
+
#
|