rb-gsl 1.15.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/AUTHORS +6 -0
- data/COPYING +339 -0
- data/ChangeLog +567 -0
- data/README +32 -0
- data/Rakefile +99 -0
- data/THANKS +17 -0
- data/VERSION +1 -0
- 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/alf.c +206 -0
- data/ext/array.c +642 -0
- data/ext/array_complex.c +248 -0
- data/ext/blas.c +29 -0
- data/ext/blas1.c +734 -0
- data/ext/blas2.c +1093 -0
- data/ext/blas3.c +881 -0
- data/ext/block.c +44 -0
- data/ext/block_source.c +887 -0
- data/ext/bspline.c +130 -0
- data/ext/bundle.c +3 -0
- data/ext/cdf.c +754 -0
- data/ext/cheb.c +542 -0
- data/ext/combination.c +283 -0
- data/ext/common.c +325 -0
- data/ext/complex.c +1004 -0
- data/ext/const.c +673 -0
- data/ext/const_additional.c +120 -0
- data/ext/cqp.c +283 -0
- data/ext/deriv.c +195 -0
- data/ext/dht.c +361 -0
- data/ext/diff.c +166 -0
- data/ext/dirac.c +389 -0
- data/ext/eigen.c +2373 -0
- data/ext/error.c +193 -0
- data/ext/extconf.rb +303 -0
- data/ext/fcmp.c +66 -0
- data/ext/fft.c +1102 -0
- data/ext/fit.c +205 -0
- data/ext/fresnel.c +312 -0
- data/ext/function.c +524 -0
- data/ext/geometry.c +139 -0
- data/ext/graph.c +1640 -0
- data/ext/gsl.c +280 -0
- data/ext/gsl_narray.c +804 -0
- data/ext/histogram.c +1991 -0
- data/ext/histogram2d.c +1068 -0
- data/ext/histogram3d.c +884 -0
- data/ext/histogram3d_source.c +750 -0
- data/ext/histogram_find.c +101 -0
- data/ext/histogram_oper.c +159 -0
- data/ext/ieee.c +100 -0
- data/ext/integration.c +1179 -0
- data/ext/interp.c +512 -0
- data/ext/jacobi.c +739 -0
- data/ext/linalg.c +4042 -0
- data/ext/linalg_complex.c +739 -0
- data/ext/math.c +725 -0
- data/ext/matrix.c +39 -0
- data/ext/matrix_complex.c +1737 -0
- data/ext/matrix_double.c +560 -0
- data/ext/matrix_int.c +256 -0
- data/ext/matrix_source.c +2734 -0
- data/ext/min.c +250 -0
- data/ext/monte.c +992 -0
- data/ext/multifit.c +1871 -0
- data/ext/multimin.c +806 -0
- data/ext/multimin_fsdf.c +156 -0
- data/ext/multiroots.c +955 -0
- data/ext/multiset.c +214 -0
- data/ext/ndlinear.c +321 -0
- data/ext/nmf.c +171 -0
- data/ext/nmf_wrap.c +75 -0
- data/ext/ntuple.c +469 -0
- data/ext/odeiv.c +962 -0
- data/ext/ool.c +879 -0
- data/ext/oper_complex_source.c +253 -0
- data/ext/permutation.c +596 -0
- data/ext/poly.c +42 -0
- data/ext/poly2.c +265 -0
- data/ext/poly_source.c +1915 -0
- data/ext/qrng.c +171 -0
- data/ext/randist.c +1873 -0
- data/ext/rational.c +480 -0
- data/ext/rng.c +612 -0
- data/ext/root.c +408 -0
- data/ext/sf.c +1494 -0
- data/ext/sf_airy.c +200 -0
- data/ext/sf_bessel.c +871 -0
- data/ext/sf_clausen.c +28 -0
- data/ext/sf_coulomb.c +206 -0
- data/ext/sf_coupling.c +121 -0
- data/ext/sf_dawson.c +29 -0
- data/ext/sf_debye.c +157 -0
- data/ext/sf_dilog.c +43 -0
- data/ext/sf_elementary.c +46 -0
- data/ext/sf_ellint.c +206 -0
- data/ext/sf_elljac.c +30 -0
- data/ext/sf_erfc.c +93 -0
- data/ext/sf_exp.c +169 -0
- data/ext/sf_expint.c +211 -0
- data/ext/sf_fermi_dirac.c +148 -0
- data/ext/sf_gamma.c +347 -0
- data/ext/sf_gegenbauer.c +97 -0
- data/ext/sf_hyperg.c +203 -0
- data/ext/sf_laguerre.c +113 -0
- data/ext/sf_lambert.c +47 -0
- data/ext/sf_legendre.c +368 -0
- data/ext/sf_log.c +105 -0
- data/ext/sf_mathieu.c +238 -0
- data/ext/sf_power.c +47 -0
- data/ext/sf_psi.c +98 -0
- data/ext/sf_synchrotron.c +48 -0
- data/ext/sf_transport.c +76 -0
- data/ext/sf_trigonometric.c +210 -0
- data/ext/sf_zeta.c +119 -0
- data/ext/signal.c +308 -0
- data/ext/siman.c +717 -0
- data/ext/sort.c +208 -0
- data/ext/spline.c +395 -0
- data/ext/stats.c +800 -0
- data/ext/sum.c +168 -0
- data/ext/tamu_anova.c +56 -0
- data/ext/tensor.c +38 -0
- data/ext/tensor_source.c +1123 -0
- data/ext/vector.c +38 -0
- data/ext/vector_complex.c +2246 -0
- data/ext/vector_double.c +1438 -0
- data/ext/vector_int.c +204 -0
- data/ext/vector_source.c +3336 -0
- data/ext/wavelet.c +945 -0
- data/include/rb_gsl.h +158 -0
- data/include/rb_gsl_array.h +238 -0
- data/include/rb_gsl_cheb.h +21 -0
- data/include/rb_gsl_common.h +348 -0
- data/include/rb_gsl_complex.h +25 -0
- data/include/rb_gsl_config.h +62 -0
- data/include/rb_gsl_const.h +29 -0
- data/include/rb_gsl_dirac.h +13 -0
- data/include/rb_gsl_eigen.h +17 -0
- data/include/rb_gsl_fft.h +62 -0
- data/include/rb_gsl_fit.h +25 -0
- data/include/rb_gsl_function.h +27 -0
- data/include/rb_gsl_graph.h +70 -0
- data/include/rb_gsl_histogram.h +63 -0
- data/include/rb_gsl_histogram3d.h +97 -0
- data/include/rb_gsl_integration.h +17 -0
- data/include/rb_gsl_interp.h +46 -0
- data/include/rb_gsl_linalg.h +25 -0
- data/include/rb_gsl_math.h +26 -0
- data/include/rb_gsl_odeiv.h +21 -0
- data/include/rb_gsl_poly.h +71 -0
- data/include/rb_gsl_rational.h +37 -0
- data/include/rb_gsl_rng.h +21 -0
- data/include/rb_gsl_root.h +22 -0
- data/include/rb_gsl_sf.h +119 -0
- data/include/rb_gsl_statistics.h +17 -0
- data/include/rb_gsl_tensor.h +45 -0
- data/include/rb_gsl_with_narray.h +29 -0
- data/include/templates_off.h +87 -0
- data/include/templates_on.h +241 -0
- data/lib/gsl.rb +3 -0
- data/lib/gsl/gnuplot.rb +41 -0
- data/lib/gsl/oper.rb +68 -0
- data/lib/ool.rb +22 -0
- data/lib/ool/conmin.rb +30 -0
- data/lib/rbgsl.rb +3 -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 +177 -0
- data/rdoc/ndlinear.rdoc +250 -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 +110 -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_complex_test.rb +36 -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/narray/blas_dnrm2.rb +20 -0
- data/tests/odeiv.rb +353 -0
- data/tests/poly/poly.rb +290 -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_mode.rb +19 -0
- data/tests/sf/test_sf.rb +839 -0
- data/tests/stats.rb +174 -0
- data/tests/stats_mt.rb +16 -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 +789 -0
data/include/rb_gsl.h
ADDED
@@ -0,0 +1,158 @@
|
|
1
|
+
/*
|
2
|
+
rb_gsl.h
|
3
|
+
Ruby/GSL: Ruby extension library for GSL (GNU Scientific Library)
|
4
|
+
(C) Copyright 2001-2004 by Yoshiki Tsunesada
|
5
|
+
|
6
|
+
Ruby/GSL is free software: you can redistribute it and/or modify it
|
7
|
+
under the terms of the GNU General Public License.
|
8
|
+
This library is distributed in the hope that it will be useful, but
|
9
|
+
WITHOUT ANY WARRANTY
|
10
|
+
*/
|
11
|
+
|
12
|
+
#ifndef ___RB_GSL_H___
|
13
|
+
#define ___RB_GSL_H___
|
14
|
+
|
15
|
+
#include <stdio.h>
|
16
|
+
#include <string.h>
|
17
|
+
#include <ctype.h>
|
18
|
+
#include <stdlib.h>
|
19
|
+
#include <gsl/gsl_mode.h>
|
20
|
+
#include "rb_gsl_common.h"
|
21
|
+
#include "rb_gsl_math.h"
|
22
|
+
#include "rb_gsl_complex.h"
|
23
|
+
#include "rb_gsl_array.h"
|
24
|
+
#include "rb_gsl_function.h"
|
25
|
+
#include "rb_gsl_poly.h"
|
26
|
+
#include "rb_gsl_sf.h"
|
27
|
+
#include "rb_gsl_linalg.h"
|
28
|
+
#include "rb_gsl_eigen.h"
|
29
|
+
#include "rb_gsl_fft.h"
|
30
|
+
#include "rb_gsl_integration.h"
|
31
|
+
#include "rb_gsl_rng.h"
|
32
|
+
#include "rb_gsl_statistics.h"
|
33
|
+
#include "rb_gsl_histogram.h"
|
34
|
+
#include "rb_gsl_odeiv.h"
|
35
|
+
#include "rb_gsl_interp.h"
|
36
|
+
#include "rb_gsl_cheb.h"
|
37
|
+
#include "rb_gsl_root.h"
|
38
|
+
#include "rb_gsl_fit.h"
|
39
|
+
#include "rb_gsl_const.h"
|
40
|
+
#include "rb_gsl_config.h"
|
41
|
+
|
42
|
+
|
43
|
+
#include "ruby.h"
|
44
|
+
#ifdef RUBY_1_9_LATER
|
45
|
+
#include "ruby/io.h"
|
46
|
+
#else
|
47
|
+
#include "rubyio.h"
|
48
|
+
#endif
|
49
|
+
|
50
|
+
void Init_gsl_error(VALUE module);
|
51
|
+
void Init_gsl_math(VALUE module);
|
52
|
+
void Init_gsl_complex(VALUE module);
|
53
|
+
void Init_gsl_array(VALUE module);
|
54
|
+
void Init_gsl_blas(VALUE module);
|
55
|
+
void Init_gsl_sort(VALUE module);
|
56
|
+
void Init_gsl_poly(VALUE module);
|
57
|
+
void Init_gsl_poly_int(VALUE module);
|
58
|
+
void Init_gsl_poly2(VALUE module);
|
59
|
+
void Init_gsl_rational(VALUE module);
|
60
|
+
void Init_gsl_sf(VALUE module);
|
61
|
+
void Init_gsl_linalg(VALUE module);
|
62
|
+
void Init_gsl_eigen(VALUE module);
|
63
|
+
void Init_gsl_fft(VALUE module);
|
64
|
+
void Init_gsl_signal(VALUE module);
|
65
|
+
void Init_gsl_function(VALUE module);
|
66
|
+
void Init_gsl_integration(VALUE module);
|
67
|
+
|
68
|
+
void Init_gsl_rng(VALUE module);
|
69
|
+
void Init_gsl_qrng(VALUE module);
|
70
|
+
void Init_gsl_ran(VALUE module);
|
71
|
+
void Init_gsl_cdf(VALUE module);
|
72
|
+
void Init_gsl_stats(VALUE module);
|
73
|
+
|
74
|
+
void Init_gsl_histogram(VALUE module);
|
75
|
+
void Init_gsl_histogram2d(VALUE module);
|
76
|
+
void Init_gsl_histogram3d(VALUE module);
|
77
|
+
void Init_gsl_ntuple(VALUE module);
|
78
|
+
void Init_gsl_monte(VALUE module);
|
79
|
+
void Init_gsl_siman(VALUE module);
|
80
|
+
|
81
|
+
void Init_gsl_odeiv(VALUE module);
|
82
|
+
void Init_gsl_interp(VALUE module);
|
83
|
+
void Init_gsl_spline(VALUE module);
|
84
|
+
void Init_gsl_diff(VALUE module);
|
85
|
+
#ifdef GSL_1_4_9_LATER
|
86
|
+
void Init_gsl_deriv(VALUE module);
|
87
|
+
#endif
|
88
|
+
|
89
|
+
void Init_gsl_cheb(VALUE module);
|
90
|
+
void Init_gsl_sum(VALUE module);
|
91
|
+
void Init_gsl_dht(VALUE module);
|
92
|
+
|
93
|
+
void Init_gsl_root(VALUE module);
|
94
|
+
void Init_gsl_multiroot(VALUE module);
|
95
|
+
void Init_gsl_min(VALUE module);
|
96
|
+
void Init_gsl_multimin(VALUE module);
|
97
|
+
void Init_gsl_fit(VALUE module);
|
98
|
+
void Init_gsl_multifit(VALUE module);
|
99
|
+
|
100
|
+
void Init_gsl_const(VALUE module);
|
101
|
+
|
102
|
+
void Init_gsl_ieee(VALUE module);
|
103
|
+
|
104
|
+
#ifdef HAVE_NARRAY_H
|
105
|
+
void Init_gsl_narray(VALUE module);
|
106
|
+
#endif
|
107
|
+
|
108
|
+
void Init_wavelet(VALUE module);
|
109
|
+
|
110
|
+
void Init_gsl_graph(VALUE module);
|
111
|
+
|
112
|
+
#ifdef HAVE_TENSOR_TENSOR_H
|
113
|
+
void Init_tensor_init(VALUE module);
|
114
|
+
void Init_tensor_int_init(VALUE module);
|
115
|
+
#endif
|
116
|
+
|
117
|
+
void Init_gsl_dirac(VALUE module);
|
118
|
+
|
119
|
+
EXTERN VALUE cGSL_Object;
|
120
|
+
|
121
|
+
void Init_tamu_anova(VALUE module);
|
122
|
+
|
123
|
+
#ifdef HAVE_TAMU_ANOVA_TAMU_ANOVA_H
|
124
|
+
#include "tamu_anova/tamu_anova.h"
|
125
|
+
#endif
|
126
|
+
|
127
|
+
#ifdef HAVE_OOL_OOL_VERSION_H
|
128
|
+
void Init_ool(VALUE module);
|
129
|
+
#endif
|
130
|
+
|
131
|
+
#ifdef HAVE_JACOBI_H
|
132
|
+
void Init_jacobi(VALUE module);
|
133
|
+
#endif
|
134
|
+
|
135
|
+
#ifdef HAVE_GSL_GSL_CQP_H
|
136
|
+
void Init_cqp(VALUE module);
|
137
|
+
#endif
|
138
|
+
|
139
|
+
void Init_fresnel(VALUE module);
|
140
|
+
|
141
|
+
#ifdef GSL_1_9_LATER
|
142
|
+
void Init_bspline(VALUE module);
|
143
|
+
#endif
|
144
|
+
|
145
|
+
#ifdef HAVE_ALF_ALF_H
|
146
|
+
#include "alf/alf.h"
|
147
|
+
#endif
|
148
|
+
void Init_alf(VALUE module);
|
149
|
+
void Init_geometry(VALUE module);
|
150
|
+
|
151
|
+
#ifdef GSL_1_14_LATER
|
152
|
+
#include <gsl/gsl_multiset.h>
|
153
|
+
extern VALUE cMultiset;
|
154
|
+
void Init_multiset(VALUE module);
|
155
|
+
|
156
|
+
#endif
|
157
|
+
|
158
|
+
#endif
|
@@ -0,0 +1,238 @@
|
|
1
|
+
/*
|
2
|
+
rb_gsl_array.h
|
3
|
+
Ruby/GSL: Ruby extension library for GSL (GNU Scientific Library)
|
4
|
+
(C) Copyright 2001-2004 by Yoshiki Tsunesada
|
5
|
+
|
6
|
+
Ruby/GSL is free software: you can redistribute it and/or modify it
|
7
|
+
under the terms of the GNU General Public License.
|
8
|
+
This library is distributed in the hope that it will be useful, but
|
9
|
+
WITHOUT ANY WARRANTY
|
10
|
+
*/
|
11
|
+
|
12
|
+
#ifndef ___RB_GSL_ARRAY_H___
|
13
|
+
#define ___RB_GSL_ARRAY_H___
|
14
|
+
|
15
|
+
#include <math.h>
|
16
|
+
#include <gsl/gsl_errno.h>
|
17
|
+
#include <gsl/gsl_complex.h>
|
18
|
+
#include <gsl/gsl_block.h>
|
19
|
+
#include <gsl/gsl_vector.h>
|
20
|
+
#include <gsl/gsl_vector_complex.h>
|
21
|
+
#include <gsl/gsl_vector_complex_double.h>
|
22
|
+
#include <gsl/gsl_matrix.h>
|
23
|
+
#include <gsl/gsl_matrix_complex_double.h>
|
24
|
+
#include <gsl/gsl_permutation.h>
|
25
|
+
#include <gsl/gsl_combination.h>
|
26
|
+
#include <gsl/gsl_sort.h>
|
27
|
+
#include <gsl/gsl_sort_vector.h>
|
28
|
+
#include <gsl/gsl_linalg.h>
|
29
|
+
#include <gsl/gsl_eigen.h>
|
30
|
+
#include <gsl/gsl_odeiv.h>
|
31
|
+
#include <gsl/gsl_blas.h>
|
32
|
+
#include "rb_gsl_config.h"
|
33
|
+
|
34
|
+
#include "ruby.h"
|
35
|
+
#ifdef RUBY_1_9_LATER
|
36
|
+
#include "ruby/io.h"
|
37
|
+
#else
|
38
|
+
#include "rubyio.h"
|
39
|
+
#endif
|
40
|
+
|
41
|
+
#include "rb_gsl_common.h"
|
42
|
+
|
43
|
+
typedef gsl_permutation gsl_index;
|
44
|
+
|
45
|
+
#ifdef HAVE_NARRAY_H
|
46
|
+
EXTERN VALUE cNArray;
|
47
|
+
#endif
|
48
|
+
|
49
|
+
EXTERN VALUE cgsl_block, cgsl_block_int;
|
50
|
+
EXTERN VALUE cgsl_block_uchar;
|
51
|
+
EXTERN VALUE cgsl_block_complex;
|
52
|
+
EXTERN VALUE cgsl_vector, cgsl_vector_complex;
|
53
|
+
EXTERN VALUE cgsl_vector_col;
|
54
|
+
EXTERN VALUE cgsl_vector_col_view;
|
55
|
+
EXTERN VALUE cgsl_vector_complex_col;
|
56
|
+
EXTERN VALUE cgsl_vector_complex_col_view;
|
57
|
+
EXTERN VALUE cgsl_vector_view, cgsl_vector_complex_view;
|
58
|
+
EXTERN VALUE cgsl_vector_view_ro, cgsl_vector_col_view_ro;
|
59
|
+
EXTERN VALUE cgsl_vector_complex_view_ro;
|
60
|
+
|
61
|
+
EXTERN VALUE cgsl_vector_int, cgsl_vector_int_col;
|
62
|
+
EXTERN VALUE cgsl_vector_int_view, cgsl_vector_int_col_view;
|
63
|
+
EXTERN VALUE cgsl_vector_int_view_ro, cgsl_vector_int_col_view_ro;
|
64
|
+
|
65
|
+
EXTERN VALUE cgsl_matrix, cgsl_matrix_complex;
|
66
|
+
EXTERN VALUE cgsl_matrix_view_ro;
|
67
|
+
EXTERN VALUE cgsl_matrix_complex_view_ro;
|
68
|
+
EXTERN VALUE cgsl_matrix_view, cgsl_matrix_complex_view;
|
69
|
+
EXTERN VALUE cgsl_matrix_int, cgsl_matrix_int_view;
|
70
|
+
EXTERN VALUE cgsl_matrix_int_view_ro;
|
71
|
+
EXTERN VALUE cgsl_permutation;
|
72
|
+
EXTERN VALUE cgsl_index;
|
73
|
+
EXTERN VALUE cgsl_function;
|
74
|
+
EXTERN VALUE mgsl_narray;
|
75
|
+
|
76
|
+
EXTERN VALUE mDirac;
|
77
|
+
|
78
|
+
gsl_matrix_view* gsl_matrix_view_alloc();
|
79
|
+
void gsl_matrix_view_free(gsl_matrix_view * mv);
|
80
|
+
gsl_vector_view* gsl_vector_view_alloc();
|
81
|
+
void gsl_vector_view_free(gsl_vector_view * v);
|
82
|
+
gsl_vector_complex_view* gsl_vector_complex_view_alloc();
|
83
|
+
void gsl_vector_complex_view_free(gsl_vector_view * vv);
|
84
|
+
gsl_matrix_complex_view* gsl_matrix_complex_view_alloc();
|
85
|
+
void gsl_matrix_complex_view_free(gsl_matrix_view * vv);
|
86
|
+
|
87
|
+
VALUE rb_gsl_vector_new(int argc, VALUE *argv, VALUE klass);
|
88
|
+
|
89
|
+
gsl_vector* get_cvector(VALUE v);
|
90
|
+
VALUE make_rarray_from_cvector(const gsl_vector *v);
|
91
|
+
VALUE make_rarray_from_cpermutation(const gsl_permutation *v);
|
92
|
+
gsl_vector* make_cvector_from_rarrays(VALUE a);
|
93
|
+
gsl_vector* make_cvector_from_rarray(VALUE a);
|
94
|
+
void cvector_set_from_carray(gsl_vector *v, const double *a);
|
95
|
+
void cvector_set_from_rarrays(gsl_vector *v, VALUE ary);
|
96
|
+
void cvector_set_from_rarray(gsl_vector *v, VALUE ary);
|
97
|
+
void carray_set_from_cvector(double *a, const gsl_vector *v);
|
98
|
+
void carray_set_from_rarrays(double *a, VALUE ary);
|
99
|
+
void carray_set_from_rarray(double *a, VALUE ary);
|
100
|
+
int is_vector_p(VALUE obj);
|
101
|
+
void check_vector(VALUE obj);
|
102
|
+
int is_vector_complex_p(VALUE obj);
|
103
|
+
void check_vector_complex(VALUE obj);
|
104
|
+
int is_matrix_p(VALUE obj);
|
105
|
+
void check_matrix(VALUE obj);
|
106
|
+
int is_matrix_complex_p(VALUE obj);
|
107
|
+
void check_matrix_complex(VALUE obj);
|
108
|
+
gsl_complex* make_complex(double re, double im);
|
109
|
+
int is_permutation_p(VALUE obj);
|
110
|
+
void check_permutation(VALUE obj);
|
111
|
+
int is_combination_p(VALUE obj);
|
112
|
+
void check_combination(VALUE obj);
|
113
|
+
gsl_vector* get_vector(VALUE ary);
|
114
|
+
gsl_matrix* make_matrix_clone(const gsl_matrix *m);
|
115
|
+
gsl_matrix_int* make_matrix_int_clone(const gsl_matrix_int *m);
|
116
|
+
VALUE make_matrix_clone2(VALUE vm);
|
117
|
+
gsl_matrix_complex* make_matrix_complex_clone(const gsl_matrix_complex *m);
|
118
|
+
int is_matrix_complex_p(VALUE obj);
|
119
|
+
void check_matrix_complex(VALUE obj);
|
120
|
+
|
121
|
+
double* get_vector_ptr(VALUE ary, size_t *stride, size_t *n);
|
122
|
+
|
123
|
+
|
124
|
+
gsl_matrix_complex* matrix_to_complex(const gsl_matrix *m);
|
125
|
+
|
126
|
+
void gsl_matrix_complex_mul(gsl_matrix_complex *mnew, const gsl_matrix_complex *m,
|
127
|
+
const gsl_matrix_complex *mb);
|
128
|
+
void gsl_matrix_mul(gsl_matrix *mnew, gsl_matrix *m, gsl_matrix *b);
|
129
|
+
void gsl_matrix_complex_mul_vector(gsl_vector_complex *vnew,
|
130
|
+
const gsl_matrix_complex *m,
|
131
|
+
const gsl_vector_complex *v);
|
132
|
+
void gsl_matrix_mul_vector(gsl_vector *vnew,
|
133
|
+
const gsl_matrix *m, const gsl_vector *v);
|
134
|
+
gsl_vector_complex* vector_to_complex(const gsl_vector *v);
|
135
|
+
|
136
|
+
gsl_vector* make_vector_clone(const gsl_vector *v);
|
137
|
+
gsl_vector_complex* make_vector_complex_clone(const gsl_vector_complex *v);
|
138
|
+
int gsl_vector_complex_add(gsl_vector_complex *cv, const gsl_vector_complex *cv2);
|
139
|
+
int gsl_vector_complex_sub(gsl_vector_complex *cv, const gsl_vector_complex *cv2);
|
140
|
+
int gsl_vector_complex_mul(gsl_vector_complex *cv, const gsl_vector_complex *cv2);
|
141
|
+
int gsl_vector_complex_div(gsl_vector_complex *cv, const gsl_vector_complex *cv2);
|
142
|
+
int gsl_vector_complex_add_constant(gsl_vector_complex *cv, gsl_complex b);
|
143
|
+
int gsl_vector_complex_scale(gsl_vector_complex *cv, gsl_complex b);
|
144
|
+
gsl_vector_view* rb_gsl_make_vector_view(double *data, size_t size, size_t stride);
|
145
|
+
gsl_vector_int_view* rb_gsl_make_vector_int_view(int *data, size_t size, size_t stride);
|
146
|
+
|
147
|
+
void Init_gsl_array_complex(VALUE module);
|
148
|
+
void Init_gsl_vector(VALUE module);
|
149
|
+
void Init_gsl_vector_complex(VALUE module);
|
150
|
+
void Init_gsl_matrix(VALUE module);
|
151
|
+
void Init_gsl_matrix_complex(VALUE module);
|
152
|
+
void Init_gsl_matrix(VALUE module);
|
153
|
+
void Init_gsl_permutation(VALUE module);
|
154
|
+
void Init_gsl_combination(VALUE module);
|
155
|
+
void Init_gsl_matrix_int(VALUE module);
|
156
|
+
|
157
|
+
VALUE rb_gsl_range2ary(VALUE obj);
|
158
|
+
|
159
|
+
void Init_gsl_vector_int();
|
160
|
+
gsl_vector_int_view* rb_gsl_vector_int_view_alloc(size_t n);
|
161
|
+
void rb_gsl_vector_int_view_free(gsl_vector_int_view *v);
|
162
|
+
gsl_vector_int* make_vector_int_clone(const gsl_vector_int *v);
|
163
|
+
gsl_matrix_int_view* rb_gsl_matrix_int_view_alloc();
|
164
|
+
void rb_gsl_matrix_int_view_free(gsl_matrix_int_view *v);
|
165
|
+
VALUE rb_gsl_matrix_to_i(VALUE obj);
|
166
|
+
VALUE rb_gsl_matrix_int_to_f(VALUE obj);
|
167
|
+
void gsl_matrix_int_mul_vector(gsl_vector_int *vnew,
|
168
|
+
const gsl_matrix_int *m, const gsl_vector_int *v);
|
169
|
+
VALUE rb_gsl_vector_to_i(VALUE obj);
|
170
|
+
VALUE make_rarray_from_cvector_int(const gsl_vector_int *v);
|
171
|
+
VALUE rb_gsl_vector_int_to_f(VALUE obj);
|
172
|
+
VALUE rb_gsl_vector_uminus(VALUE obj);
|
173
|
+
VALUE rb_gsl_vector_print(VALUE obj);
|
174
|
+
void gsl_vector_print(const gsl_vector *v, VALUE klass);
|
175
|
+
int rbgsl_vector_equal(const gsl_vector *v1, const gsl_vector *v2, double eps);
|
176
|
+
|
177
|
+
#ifndef GSL_1_2_LATER
|
178
|
+
int gsl_matrix_complex_add(gsl_matrix_complex * a, const gsl_matrix_complex * b);
|
179
|
+
int gsl_matrix_complex_sub(gsl_matrix_complex * a, const gsl_matrix_complex * b);
|
180
|
+
int gsl_matrix_complex_mul_elements(gsl_matrix_complex * a, const gsl_matrix_complex * b);
|
181
|
+
int gsl_matrix_complex_div_elements(gsl_matrix_complex * a, const gsl_matrix_complex * b);
|
182
|
+
int gsl_matrix_complex_scale(gsl_matrix_complex * a, const gsl_complex x);
|
183
|
+
int gsl_matrix_complex_add_constant(gsl_matrix_complex * a, const gsl_complex x);
|
184
|
+
int gsl_matrix_complex_add_diagonal(gsl_matrix_complex * a, const gsl_complex x);
|
185
|
+
#endif
|
186
|
+
|
187
|
+
void Init_gsl_vector_init(VALUE module);
|
188
|
+
void Init_gsl_vector_int_init(VALUE module);
|
189
|
+
void Init_gsl_matrix_init(VALUE module);
|
190
|
+
void Init_gsl_matrix_int_init(VALUE module);
|
191
|
+
|
192
|
+
gsl_matrix* gsl_matrix_alloc_from_array_sizes(VALUE ary,
|
193
|
+
VALUE nn1, VALUE nn2);
|
194
|
+
gsl_matrix* gsl_matrix_alloc_from_arrays(int argc, VALUE *argv);
|
195
|
+
|
196
|
+
gsl_matrix* gsl_matrix_alloc_from_vector_sizes(VALUE ary,
|
197
|
+
VALUE nn1, VALUE nn2);
|
198
|
+
gsl_matrix* gsl_matrix_alloc_from_vectors(int argc, VALUE *argv);
|
199
|
+
gsl_matrix_int* gsl_matrix_int_alloc_from_array_sizes(VALUE ary,
|
200
|
+
VALUE nn1, VALUE nn2);
|
201
|
+
gsl_matrix_int* gsl_matrix_int_alloc_from_arrays(int argc, VALUE *argv);
|
202
|
+
|
203
|
+
gsl_matrix_int* gsl_matrix_int_alloc_from_vector_sizes(VALUE ary,
|
204
|
+
VALUE nn1, VALUE nn2);
|
205
|
+
gsl_matrix_int* gsl_matrix_int_alloc_from_vectors(int argc, VALUE *argv);
|
206
|
+
|
207
|
+
VALUE rb_gsl_matrix_do_something(VALUE obj, void (*f)(gsl_matrix *));
|
208
|
+
VALUE rb_gsl_matrix_int_do_something(VALUE obj, void (*f)(gsl_matrix_int *));
|
209
|
+
|
210
|
+
VALUE rb_gsl_matrix_power(VALUE a, VALUE b);
|
211
|
+
VALUE rb_gsl_matrix_int_power(VALUE a, VALUE b);
|
212
|
+
|
213
|
+
void mygsl_vector_shift(gsl_vector *p, size_t n);
|
214
|
+
void mygsl_vector_int_shift(gsl_vector_int *p, size_t n);
|
215
|
+
void mygsl_vector_shift_scale2(gsl_vector *p, size_t n);
|
216
|
+
void mygsl_vector_int_shift_scale2(gsl_vector_int *p, size_t n);
|
217
|
+
|
218
|
+
VALUE rb_gsl_vector_to_s(VALUE obj);
|
219
|
+
VALUE rb_gsl_vector_int_to_s(VALUE obj);
|
220
|
+
|
221
|
+
VALUE rb_gsl_vector_add_constant(VALUE obj, VALUE x);
|
222
|
+
VALUE rb_gsl_vector_int_add_constant(VALUE obj, VALUE x);
|
223
|
+
VALUE rb_gsl_vector_scale(VALUE obj, VALUE x);
|
224
|
+
VALUE rb_gsl_vector_scale_bang(VALUE obj, VALUE x);
|
225
|
+
VALUE rb_gsl_vector_int_scale(VALUE obj, VALUE x);
|
226
|
+
VALUE rb_gsl_vector_int_scale_bang(VALUE obj, VALUE x);
|
227
|
+
gsl_vector_int* make_cvector_int_from_rarray(VALUE ary);
|
228
|
+
void cvector_int_set_from_rarray(gsl_vector_int *v, VALUE ary);
|
229
|
+
VALUE rb_gsl_range2vector(VALUE obj);
|
230
|
+
VALUE rb_gsl_range2vector_int(VALUE obj);
|
231
|
+
|
232
|
+
void Init_gsl_block_init(VALUE module);
|
233
|
+
void Init_gsl_block_int_init(VALUE module);
|
234
|
+
void Init_gsl_block_uchar_init(VALUE module);
|
235
|
+
|
236
|
+
void Init_gsl_matrix_nmf(void);
|
237
|
+
|
238
|
+
#endif
|
@@ -0,0 +1,21 @@
|
|
1
|
+
/*
|
2
|
+
rb_gsl_cheb.h
|
3
|
+
Ruby/GSL: Ruby extension library for GSL (GNU Scientific Library)
|
4
|
+
(C) Copyright 2001-2004 by Yoshiki Tsunesada
|
5
|
+
|
6
|
+
Ruby/GSL is free software: you can redistribute it and/or modify it
|
7
|
+
under the terms of the GNU General Public License.
|
8
|
+
This library is distributed in the hope that it will be useful, but
|
9
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
MERCHANTABILITY or CHEBNESS FOR A PARTICULAR PURPOSE.
|
11
|
+
*/
|
12
|
+
|
13
|
+
#ifndef ___RB_GSL_CHEB_H___
|
14
|
+
#define ___RB_GSL_CHEB_H___
|
15
|
+
|
16
|
+
#include "rb_gsl.h"
|
17
|
+
#include "rb_gsl_function.h"
|
18
|
+
#include <gsl/gsl_math.h>
|
19
|
+
#include <gsl/gsl_chebyshev.h>
|
20
|
+
|
21
|
+
#endif
|
@@ -0,0 +1,348 @@
|
|
1
|
+
/*
|
2
|
+
rb_gsl_common.h
|
3
|
+
Ruby/GSL: Ruby extension library for GSL (GNU Scientific Library)
|
4
|
+
(C) Copyright 2001-2004 by Yoshiki Tsunesada
|
5
|
+
|
6
|
+
Ruby/GSL is free software: you can redistribute it and/or modify it
|
7
|
+
under the terms of the GNU General Public License.
|
8
|
+
This library is distributed in the hope that it will be useful, but
|
9
|
+
WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
11
|
+
*/
|
12
|
+
#ifndef ___RB_GSL_COMMON_H___
|
13
|
+
#define ___RB_GSL_COMMON_H___
|
14
|
+
|
15
|
+
#include "rb_gsl_config.h"
|
16
|
+
#include "ruby.h"
|
17
|
+
#include <ctype.h>
|
18
|
+
#include <gsl/gsl_errno.h>
|
19
|
+
#include <gsl/gsl_version.h>
|
20
|
+
#include <gsl/gsl_math.h>
|
21
|
+
#include <gsl/gsl_complex.h>
|
22
|
+
#include <gsl/gsl_vector.h>
|
23
|
+
#include <gsl/gsl_matrix.h>
|
24
|
+
#include <gsl/gsl_permutation.h>
|
25
|
+
#include <gsl/gsl_ieee_utils.h>
|
26
|
+
#ifdef HAVE_NARRAY_H
|
27
|
+
#include "narray.h"
|
28
|
+
#include "rb_gsl_with_narray.h"
|
29
|
+
#endif
|
30
|
+
|
31
|
+
EXTERN ID rb_gsl_id_beg, rb_gsl_id_end, rb_gsl_id_excl, rb_gsl_id_to_a;
|
32
|
+
|
33
|
+
#ifndef CHECK_FIXNUM
|
34
|
+
#define CHECK_FIXNUM(x) if(!FIXNUM_P(x))rb_raise(rb_eTypeError,"Fixnum expected");
|
35
|
+
#endif
|
36
|
+
|
37
|
+
#ifndef Need_Float
|
38
|
+
#define Need_Float(x) (x) = rb_Float(x)
|
39
|
+
#endif
|
40
|
+
|
41
|
+
#ifndef Need_Float2
|
42
|
+
#define Need_Float2(x,y) do {\
|
43
|
+
Need_Float(x);\
|
44
|
+
Need_Float(y);} while (0)
|
45
|
+
#endif
|
46
|
+
|
47
|
+
#ifndef COMPLEX_P
|
48
|
+
#define COMPLEX_P(x) (rb_obj_is_kind_of(x,cgsl_complex))
|
49
|
+
#endif
|
50
|
+
|
51
|
+
#ifndef CHECK_RNG
|
52
|
+
#define CHECK_RNG(x) if(!rb_obj_is_kind_of(x,cgsl_rng))\
|
53
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Rng expected)");
|
54
|
+
#endif
|
55
|
+
|
56
|
+
#ifndef CHECK_COMPLEX
|
57
|
+
#define CHECK_COMPLEX(x) if(!rb_obj_is_kind_of(x,cgsl_complex))\
|
58
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Complex expected)");
|
59
|
+
#endif
|
60
|
+
|
61
|
+
#ifndef POLY_P
|
62
|
+
#define POLY_P(x) (rb_obj_is_kind_of(x,cgsl_poly))
|
63
|
+
#endif
|
64
|
+
|
65
|
+
#ifndef CHECK_POLY
|
66
|
+
#define CHECK_POLY(x) if(!rb_obj_is_kind_of(x,cgsl_poly))\
|
67
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Poly expected)");
|
68
|
+
#endif
|
69
|
+
|
70
|
+
#ifndef CHECK_POLY_INT
|
71
|
+
#define CHECK_POLY_INT(x) if(!rb_obj_is_kind_of(x,cgsl_poly_int))\
|
72
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Poly::Int expected)");
|
73
|
+
#endif
|
74
|
+
|
75
|
+
#ifndef RATIONAL_P
|
76
|
+
#define RATIONAL_P(x) (rb_obj_is_kind_of(x,cgsl_rational))
|
77
|
+
#endif
|
78
|
+
|
79
|
+
#ifndef CHECK_RATIONAL
|
80
|
+
#define CHECK_RATIONAL(x) if(!rb_obj_is_kind_of(x,cgsl_rational))\
|
81
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Rational expected)");
|
82
|
+
#endif
|
83
|
+
|
84
|
+
/*****/
|
85
|
+
#ifndef BLOCK_P
|
86
|
+
#define BLOCK_P(x) (rb_obj_is_kind_of(x,cgsl_block))
|
87
|
+
#endif
|
88
|
+
|
89
|
+
#ifndef CHECK_BLOCK
|
90
|
+
#define CHECK_BLOCK(x) if(!rb_obj_is_kind_of(x,cgsl_block))\
|
91
|
+
rb_raise(rb_eTypeError, "wrong argument type %s (GSL::Block expected)", rb_class2name(CLASS_OF(x)));
|
92
|
+
#endif
|
93
|
+
#ifndef BLOCK_INT_P
|
94
|
+
#define BLOCK_INT_P(x) (rb_obj_is_kind_of(x,cgsl_block_int))
|
95
|
+
#endif
|
96
|
+
|
97
|
+
#ifndef CHECK_BLOCK_INT
|
98
|
+
#define CHECK_BLOCK_INT(x) if(!rb_obj_is_kind_of(x,cgsl_block_int))\
|
99
|
+
rb_raise(rb_eTypeError, "wrong argument type %s (GSL::Block::Int expected)", rb_class2name(CLASS_OF(x)));
|
100
|
+
#endif
|
101
|
+
#ifndef BLOCK_UCHAR_P
|
102
|
+
#define BLOCK_UCHAR_P(x) (rb_obj_is_kind_of(x,cgsl_block_uchar))
|
103
|
+
#endif
|
104
|
+
|
105
|
+
#ifndef CHECK_BLOCK_UCHAR
|
106
|
+
#define CHECK_BLOCK_UCHAR(x) if(!rb_obj_is_kind_of(x,cgsl_block_uchar))\
|
107
|
+
rb_raise(rb_eTypeError, "wrong argument type %s (GSL::Block::Byte expected)", rb_class2name(CLASS_OF(x)));
|
108
|
+
#endif
|
109
|
+
/*****/
|
110
|
+
|
111
|
+
#ifndef VECTOR_P
|
112
|
+
#define VECTOR_P(x) (rb_obj_is_kind_of(x,cgsl_vector))
|
113
|
+
#endif
|
114
|
+
|
115
|
+
#ifndef VECTOR_VIEW_P
|
116
|
+
#define VECTOR_VIEW_P(x) ((CLASS_OF(x)==cgsl_vector_view||CLASS_OF(x)==cgsl_vector_col_view||CLASS_OF(x)==cgsl_vector_view_ro||CLASS_OF(x)==cgsl_vector_col_view_ro))
|
117
|
+
#endif
|
118
|
+
|
119
|
+
#ifndef VECTOR_ROW_P
|
120
|
+
#define VECTOR_ROW_P(x) ((CLASS_OF(x)==cgsl_vector||CLASS_OF(x)==cgsl_vector_view||CLASS_OF(x)==cgsl_vector_view_ro))
|
121
|
+
#endif
|
122
|
+
|
123
|
+
#ifndef VECTOR_COL_P
|
124
|
+
#define VECTOR_COL_P(x) ((CLASS_OF(x)==cgsl_vector_col||CLASS_OF(x)==cgsl_vector_col_view||CLASS_OF(x)==cgsl_vector_col_view_ro))
|
125
|
+
#endif
|
126
|
+
|
127
|
+
#ifndef VECTOR_ROW_COL
|
128
|
+
#define VECTOR_ROW_COL(x) ((rb_obj_is_kind_of(x,cgsl_vector_col)||rb_obj_is_kind_of(x,cgsl_vector_int_col))?cgsl_vector_col:cgsl_vector)
|
129
|
+
#endif
|
130
|
+
|
131
|
+
#ifndef CHECK_VECTOR
|
132
|
+
#define CHECK_VECTOR(x) if(!rb_obj_is_kind_of(x,cgsl_vector))\
|
133
|
+
rb_raise(rb_eTypeError, "wrong argument type %s (GSL::Vector expected)", rb_class2name(CLASS_OF(x)));
|
134
|
+
#endif
|
135
|
+
|
136
|
+
#ifdef HAVE_NARRAY_H
|
137
|
+
#define Data_Get_Vector(obj,sval) do {\
|
138
|
+
if (NA_IsNArray(obj)) {\
|
139
|
+
/* Convert obj to GSL::Vector::View */\
|
140
|
+
obj = rb_gsl_na_to_gsl_vector_view_method(obj);\
|
141
|
+
}\
|
142
|
+
CHECK_VECTOR(obj);\
|
143
|
+
Data_Get_Struct(obj,gsl_vector,sval);\
|
144
|
+
} while (0)
|
145
|
+
#else
|
146
|
+
#define Data_Get_Vector(obj,sval) do {\
|
147
|
+
CHECK_VECTOR(obj);\
|
148
|
+
Data_Get_Struct(obj,gsl_vector,sval);\
|
149
|
+
} while (0)
|
150
|
+
#endif
|
151
|
+
|
152
|
+
/******/
|
153
|
+
#ifndef VECTOR_INT_P
|
154
|
+
#define VECTOR_INT_P(x) (rb_obj_is_kind_of(x,cgsl_vector_int))
|
155
|
+
#endif
|
156
|
+
|
157
|
+
#ifndef VECTOR_INT_VIEW_P
|
158
|
+
#define VECTOR_INT_VIEW_P(x) ((CLASS_OF(x)==cgsl_vector_int_view||CLASS_OF(x)==cgsl_vector_int_col_view||CLASS_OF(x)==cgsl_vector_int_view_ro||CLASS_OF(x)==cgsl_vector_int_col_view_ro))
|
159
|
+
#endif
|
160
|
+
|
161
|
+
#ifndef VECTOR_INT_ROW_P
|
162
|
+
#define VECTOR_INT_ROW_P(x) ((CLASS_OF(x)==cgsl_vector_int||CLASS_OF(x)==cgsl_vector_int_view||CLASS_OF(x)==cgsl_vector_int_view_ro))
|
163
|
+
#endif
|
164
|
+
|
165
|
+
#ifndef VECTOR_INT_COL_P
|
166
|
+
#define VECTOR_INT_COL_P(x) ((CLASS_OF(x)==cgsl_vector_int_col||CLASS_OF(x)==cgsl_vector_int_col_view||CLASS_OF(x)==cgsl_vector_int_col_view_ro))
|
167
|
+
#endif
|
168
|
+
|
169
|
+
#ifndef VECTOR_INT_ROW_COL
|
170
|
+
#define VECTOR_INT_ROW_COL(x) (VECTOR_INT_ROW_P(x)?cgsl_vector_int:cgsl_vector_int_col)
|
171
|
+
#endif
|
172
|
+
|
173
|
+
#ifndef CHECK_VECTOR_INT
|
174
|
+
#define CHECK_VECTOR_INT(x) if(!rb_obj_is_kind_of(x,cgsl_vector_int))\
|
175
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Vector::Int expected)");
|
176
|
+
#endif
|
177
|
+
|
178
|
+
/******/
|
179
|
+
#ifndef VECTOR_COMPLEX_P
|
180
|
+
#define VECTOR_COMPLEX_P(x) (rb_obj_is_kind_of(x,cgsl_vector_complex))
|
181
|
+
#endif
|
182
|
+
|
183
|
+
#ifndef VECTOR_COMPLEX_ROW_P
|
184
|
+
#define VECTOR_COMPLEX_ROW_P(x) ((CLASS_OF(x)==cgsl_vector_complex||CLASS_OF(x)==cgsl_vector_complex_view))
|
185
|
+
#endif
|
186
|
+
|
187
|
+
#ifndef VECTOR_COMPLEX_COL_P
|
188
|
+
#define VECTOR_COMPLEX_COL_P(x) ((CLASS_OF(x)==cgsl_vector_complex_col||CLASS_OF(x)==cgsl_vector_complex_col_view))
|
189
|
+
#endif
|
190
|
+
|
191
|
+
#ifndef VECTOR_COMPLEX_ROW_COL
|
192
|
+
#define VECTOR_COMPLEX_ROW_COL(x) (VECTOR_COMPLEX_ROW_P(x)?cgsl_vector_complex:cgsl_vector_complex_col)
|
193
|
+
#endif
|
194
|
+
|
195
|
+
#ifndef CHECK_VECTOR_COMPLEX
|
196
|
+
#define CHECK_VECTOR_COMPLEX(x) if(!rb_obj_is_kind_of(x,cgsl_vector_complex))\
|
197
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Vector::Complex expected)");
|
198
|
+
#endif
|
199
|
+
|
200
|
+
#ifndef MATRIX_P
|
201
|
+
#define MATRIX_P(x) (rb_obj_is_kind_of(x,cgsl_matrix))
|
202
|
+
#endif
|
203
|
+
|
204
|
+
#ifndef CHECK_MATRIX
|
205
|
+
#define CHECK_MATRIX(x) if(!rb_obj_is_kind_of(x,cgsl_matrix))\
|
206
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Matrix expected)");
|
207
|
+
#endif
|
208
|
+
|
209
|
+
#define Data_Get_Matrix(obj,sval) do {\
|
210
|
+
CHECK_MATRIX(obj);\
|
211
|
+
Data_Get_Struct(obj,gsl_matrix,sval);\
|
212
|
+
} while (0)
|
213
|
+
|
214
|
+
|
215
|
+
#ifndef MATRIX_INT_P
|
216
|
+
#define MATRIX_INT_P(x) (rb_obj_is_kind_of(x,cgsl_matrix_int))
|
217
|
+
#endif
|
218
|
+
|
219
|
+
#ifndef CHECK_MATRIX_INT
|
220
|
+
#define CHECK_MATRIX_INT(x) if(!rb_obj_is_kind_of(x,cgsl_matrix_int))\
|
221
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Matrix::Int expected)");
|
222
|
+
#endif
|
223
|
+
|
224
|
+
#ifndef MATRIX_COMPLEX_P
|
225
|
+
#define MATRIX_COMPLEX_P(x) (rb_obj_is_kind_of(x,cgsl_matrix_complex))
|
226
|
+
#endif
|
227
|
+
|
228
|
+
#ifndef CHECK_MATRIX_COMPLEX
|
229
|
+
#define CHECK_MATRIX_COMPLEX(x) if(!rb_obj_is_kind_of(x,cgsl_matrix_complex))\
|
230
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Matrix::Complex expected)");
|
231
|
+
#endif
|
232
|
+
|
233
|
+
#ifndef TENSOR_P
|
234
|
+
#define TENSOR_P(x) ((CLASS_OF(x)==cgsl_tensor))
|
235
|
+
#endif
|
236
|
+
|
237
|
+
#ifndef CHECK_TENSOR
|
238
|
+
#define CHECK_TENSOR(x) if(CLASS_OF(x)!=cgsl_tensor)\
|
239
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Tensor expected)");
|
240
|
+
#endif
|
241
|
+
|
242
|
+
#ifndef TENSOR_INT_P
|
243
|
+
#define TENSOR_INT_P(x) ((CLASS_OF(x)==cgsl_tensor_int))
|
244
|
+
#endif
|
245
|
+
|
246
|
+
#ifndef CHECK_TENSOR_INT
|
247
|
+
#define CHECK_TENSOR_INT(x) if(CLASS_OF(x)!=cgsl_tensor_int)\
|
248
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Tensor::Int expected)");
|
249
|
+
#endif
|
250
|
+
|
251
|
+
#ifndef PERMUTATION_P
|
252
|
+
#define PERMUTATION_P(x) (rb_obj_is_kind_of(x,cgsl_permutation))
|
253
|
+
#endif
|
254
|
+
|
255
|
+
#ifndef CHECK_PERMUTATION
|
256
|
+
#define CHECK_PERMUTATION(x) if(!rb_obj_is_kind_of(x,cgsl_permutation))\
|
257
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Permutation expected)");
|
258
|
+
#endif
|
259
|
+
|
260
|
+
#ifndef PROC_P
|
261
|
+
#define PROC_P(x) (rb_obj_is_kind_of(x,rb_cProc))
|
262
|
+
#endif
|
263
|
+
|
264
|
+
#ifndef CHECK_PROC
|
265
|
+
#define CHECK_PROC(x) if(!rb_obj_is_kind_of(x,rb_cProc))\
|
266
|
+
rb_raise(rb_eTypeError, "wrong argument type (Proc expected)");
|
267
|
+
#endif
|
268
|
+
|
269
|
+
#ifndef FUNCTION_P
|
270
|
+
#define FUNCTION_P(x) (rb_obj_is_kind_of(x,cgsl_function))
|
271
|
+
#endif
|
272
|
+
|
273
|
+
#ifndef CHECK_FUNCTION
|
274
|
+
#define CHECK_FUNCTION(x) if(!rb_obj_is_kind_of(x,cgsl_function))\
|
275
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Function expected)");
|
276
|
+
#endif
|
277
|
+
|
278
|
+
#ifndef FUNCTION_FDF_P
|
279
|
+
#define FUNCTION_FDF_P(x) (rb_obj_is_kind_of(x,cgsl_function_fdf))
|
280
|
+
#endif
|
281
|
+
|
282
|
+
#ifndef CHECK_FUNCTION_FDF
|
283
|
+
#define CHECK_FUNCTION_FDF(x) if(!rb_obj_is_kind_of(x,cgsl_function_fdf))\
|
284
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Function_fdf expected)");
|
285
|
+
#endif
|
286
|
+
|
287
|
+
#ifndef HISTOGRAM_P
|
288
|
+
#define HISTOGRAM_P(x) (rb_obj_is_kind_of(x,cgsl_histogram))
|
289
|
+
#endif
|
290
|
+
|
291
|
+
#ifndef CHECK_HISTOGRAM
|
292
|
+
#define CHECK_HISTOGRAM(x) if(!rb_obj_is_kind_of(x,cgsl_histogram))\
|
293
|
+
rb_raise(rb_eTypeError, "wrong argument type (GSL::Histogram expected)");
|
294
|
+
#endif
|
295
|
+
|
296
|
+
void rb_gsl_error_handler(const char *reason, const char *file,
|
297
|
+
int line, int gsl_errno);
|
298
|
+
|
299
|
+
FILE* rb_gsl_open_writefile(VALUE io, int *flag);
|
300
|
+
FILE* rb_gsl_open_readfile(VALUE io, int *flag);
|
301
|
+
|
302
|
+
VALUE rb_gsl_obj_read_only(int argc, VALUE *argv, VALUE obj);
|
303
|
+
|
304
|
+
int str_tail_grep(const char *s0, const char *s1);
|
305
|
+
int str_head_grep(const char *s0, const char *s1);
|
306
|
+
|
307
|
+
#ifdef RUBY_1_8_LATER
|
308
|
+
#define RB_GSL_MAKE_PROC rb_block_proc()
|
309
|
+
#define STR2CHARPTR StringValuePtr
|
310
|
+
#else
|
311
|
+
#define RB_GSL_MAKE_PROC rb_f_lambda()
|
312
|
+
#define STR2CHARPTR STR2CSTR
|
313
|
+
#endif
|
314
|
+
|
315
|
+
// Added 2010/Sep/29
|
316
|
+
#ifdef RUBY_1_9_2_LATER
|
317
|
+
#define STR2CSTR StringValuePtr
|
318
|
+
#endif
|
319
|
+
|
320
|
+
void make_graphcommand(char *command, VALUE hash);
|
321
|
+
int rbgsl_complex_equal(const gsl_complex *z1, const gsl_complex *z2, double eps);
|
322
|
+
|
323
|
+
gsl_vector* mygsl_vector_down(gsl_vector *p);
|
324
|
+
void mygsl_vector_up2(gsl_vector *pnew, gsl_vector *p);
|
325
|
+
gsl_vector* mygsl_vector_up(gsl_vector *p);
|
326
|
+
|
327
|
+
gsl_vector_int* mygsl_vector_int_down(gsl_vector_int *p);
|
328
|
+
void mygsl_vector_int_up2(gsl_vector_int *pnew, gsl_vector_int *p);
|
329
|
+
gsl_vector_int* mygsl_vector_int_up(gsl_vector_int *p);
|
330
|
+
|
331
|
+
#ifndef GSL_1_3_LATER
|
332
|
+
int gsl_fcmp(const double x1, const double x2, const double epsilon);
|
333
|
+
#endif
|
334
|
+
|
335
|
+
size_t count_columns(const char *str);
|
336
|
+
char* str_scan_double(const char *str, double *val);
|
337
|
+
char* str_scan_int(const char *str, int *val);
|
338
|
+
double* get_ptr_double3(VALUE obj, size_t *size, size_t *stride, int *flag);
|
339
|
+
gsl_complex ary2complex(VALUE obj);
|
340
|
+
VALUE vector_eval_create(VALUE obj, double (*func)(double));
|
341
|
+
VALUE matrix_eval_create(VALUE obj, double (*func)(double));
|
342
|
+
VALUE rb_gsl_ary_eval1(VALUE ary, double (*f)(double));
|
343
|
+
#ifdef HAVE_NARRAY_H
|
344
|
+
VALUE rb_gsl_nary_eval1(VALUE ary, double (*f)(double));
|
345
|
+
#endif
|
346
|
+
|
347
|
+
EXTERN VALUE cGSL_Object;
|
348
|
+
#endif
|