rb-gsl 1.15.3.1 → 1.15.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (222) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHORS +2 -2
  3. data/ChangeLog +8 -0
  4. data/Rakefile +39 -96
  5. data/VERSION +1 -1
  6. data/ext/array.c +2 -2
  7. data/ext/block_source.c +1 -1
  8. data/ext/dirac.c +1 -1
  9. data/ext/eigen.c +13 -13
  10. data/ext/extconf.rb +17 -11
  11. data/ext/function.c +5 -5
  12. data/ext/gsl_narray.c +6 -6
  13. data/ext/histogram.c +7 -6
  14. data/ext/histogram2d.c +4 -4
  15. data/ext/interp.c +1 -1
  16. data/ext/linalg.c +13 -11
  17. data/ext/linalg_complex.c +8 -6
  18. data/ext/math.c +1 -1
  19. data/ext/matrix_complex.c +6 -6
  20. data/ext/matrix_source.c +10 -10
  21. data/ext/monte.c +2 -2
  22. data/ext/multimin.c +4 -4
  23. data/ext/multiroots.c +8 -8
  24. data/ext/nmf.c +6 -6
  25. data/ext/ntuple.c +4 -4
  26. data/ext/odeiv.c +2 -2
  27. data/ext/permutation.c +1 -1
  28. data/ext/poly2.c +6 -6
  29. data/ext/poly_source.c +9 -6
  30. data/ext/sf.c +31 -45
  31. data/ext/signal.c +2 -2
  32. data/ext/vector_complex.c +11 -10
  33. data/ext/vector_double.c +7 -4
  34. data/ext/vector_source.c +29 -26
  35. data/ext/wavelet.c +1 -1
  36. data/include/rb_gsl_common.h +12 -0
  37. data/include/rb_gsl_config.h +10 -1
  38. data/rdoc/blas.rdoc +4 -4
  39. data/rdoc/bspline.rdoc +8 -8
  40. data/rdoc/cheb.rdoc +9 -9
  41. data/rdoc/cholesky_complex.rdoc +1 -1
  42. data/rdoc/combi.rdoc +10 -10
  43. data/rdoc/complex.rdoc +12 -12
  44. data/rdoc/const.rdoc +21 -21
  45. data/rdoc/dht.rdoc +7 -7
  46. data/rdoc/diff.rdoc +7 -7
  47. data/rdoc/ehandling.rdoc +4 -4
  48. data/rdoc/eigen.rdoc +12 -12
  49. data/rdoc/fft.rdoc +27 -27
  50. data/rdoc/fit.rdoc +19 -19
  51. data/rdoc/function.rdoc +1 -1
  52. data/rdoc/graph.rdoc +3 -3
  53. data/rdoc/hist.rdoc +17 -17
  54. data/rdoc/hist2d.rdoc +5 -5
  55. data/rdoc/hist3d.rdoc +4 -4
  56. data/rdoc/index.rdoc +4 -4
  57. data/rdoc/integration.rdoc +17 -17
  58. data/rdoc/interp.rdoc +12 -12
  59. data/rdoc/intro.rdoc +4 -4
  60. data/rdoc/linalg.rdoc +21 -21
  61. data/rdoc/linalg_complex.rdoc +1 -1
  62. data/rdoc/math.rdoc +14 -14
  63. data/rdoc/matrix.rdoc +21 -21
  64. data/rdoc/min.rdoc +10 -10
  65. data/rdoc/monte.rdoc +4 -4
  66. data/rdoc/multimin.rdoc +13 -13
  67. data/rdoc/multiroot.rdoc +13 -13
  68. data/rdoc/narray.rdoc +10 -10
  69. data/rdoc/ndlinear.rdoc +5 -5
  70. data/rdoc/nonlinearfit.rdoc +18 -18
  71. data/rdoc/ntuple.rdoc +6 -6
  72. data/rdoc/odeiv.rdoc +13 -13
  73. data/rdoc/perm.rdoc +12 -12
  74. data/rdoc/poly.rdoc +18 -18
  75. data/rdoc/qrng.rdoc +10 -10
  76. data/rdoc/randist.rdoc +11 -11
  77. data/rdoc/ref.rdoc +50 -50
  78. data/rdoc/rng.rdoc +10 -10
  79. data/rdoc/rngextra.rdoc +5 -5
  80. data/rdoc/roots.rdoc +13 -13
  81. data/rdoc/sf.rdoc +36 -36
  82. data/rdoc/siman.rdoc +4 -4
  83. data/rdoc/sort.rdoc +7 -7
  84. data/rdoc/start.rdoc +1 -1
  85. data/rdoc/stats.rdoc +14 -14
  86. data/rdoc/sum.rdoc +5 -5
  87. data/rdoc/tensor.rdoc +4 -4
  88. data/rdoc/tut.rdoc +1 -1
  89. data/rdoc/use.rdoc +5 -5
  90. data/rdoc/vector.rdoc +29 -29
  91. data/rdoc/vector_complex.rdoc +6 -6
  92. data/rdoc/wavelet.rdoc +9 -9
  93. data/test/gsl/blas_test.rb +79 -0
  94. data/test/gsl/bspline_test.rb +63 -0
  95. data/test/gsl/cdf_test.rb +1512 -0
  96. data/test/gsl/cheb_test.rb +80 -0
  97. data/test/gsl/combination_test.rb +100 -0
  98. data/test/gsl/complex_test.rb +20 -0
  99. data/test/gsl/const_test.rb +29 -0
  100. data/test/gsl/deriv_test.rb +62 -0
  101. data/test/gsl/dht_test.rb +79 -0
  102. data/test/gsl/diff_test.rb +53 -0
  103. data/test/gsl/eigen_test.rb +563 -0
  104. data/test/gsl/err_test.rb +23 -0
  105. data/test/gsl/fit_test.rb +101 -0
  106. data/test/gsl/histo_test.rb +14 -0
  107. data/test/gsl/integration_test.rb +274 -0
  108. data/test/gsl/interp_test.rb +27 -0
  109. data/test/gsl/linalg_test.rb +463 -0
  110. data/test/gsl/matrix_nmf_test.rb +37 -0
  111. data/test/gsl/matrix_test.rb +77 -0
  112. data/test/gsl/min_test.rb +89 -0
  113. data/test/gsl/monte_test.rb +77 -0
  114. data/test/gsl/multifit_test.rb +753 -0
  115. data/test/gsl/multimin_test.rb +157 -0
  116. data/test/gsl/multiroot_test.rb +135 -0
  117. data/test/gsl/multiset_test.rb +52 -0
  118. data/test/gsl/odeiv_test.rb +275 -0
  119. data/test/gsl/poly_test.rb +338 -0
  120. data/test/gsl/qrng_test.rb +94 -0
  121. data/test/gsl/quartic_test.rb +28 -0
  122. data/test/gsl/randist_test.rb +122 -0
  123. data/test/gsl/rng_test.rb +303 -0
  124. data/test/gsl/roots_test.rb +78 -0
  125. data/test/gsl/sf_test.rb +2079 -0
  126. data/test/gsl/stats_test.rb +122 -0
  127. data/test/gsl/sum_test.rb +69 -0
  128. data/test/gsl/tensor_test.rb +396 -0
  129. data/test/gsl/vector_test.rb +223 -0
  130. data/test/gsl/wavelet_test.rb +130 -0
  131. data/test/gsl_test.rb +321 -0
  132. data/test/test_helper.rb +42 -0
  133. metadata +107 -150
  134. data/setup.rb +0 -1585
  135. data/tests/blas/amax.rb +0 -14
  136. data/tests/blas/asum.rb +0 -16
  137. data/tests/blas/axpy.rb +0 -25
  138. data/tests/blas/copy.rb +0 -23
  139. data/tests/blas/dot.rb +0 -23
  140. data/tests/bspline.rb +0 -53
  141. data/tests/cdf.rb +0 -1388
  142. data/tests/cheb.rb +0 -112
  143. data/tests/combination.rb +0 -123
  144. data/tests/complex.rb +0 -17
  145. data/tests/const.rb +0 -24
  146. data/tests/deriv.rb +0 -85
  147. data/tests/dht/dht1.rb +0 -17
  148. data/tests/dht/dht2.rb +0 -23
  149. data/tests/dht/dht3.rb +0 -23
  150. data/tests/dht/dht4.rb +0 -23
  151. data/tests/diff.rb +0 -78
  152. data/tests/eigen/eigen.rb +0 -220
  153. data/tests/eigen/gen.rb +0 -105
  154. data/tests/eigen/genherm.rb +0 -66
  155. data/tests/eigen/gensymm.rb +0 -68
  156. data/tests/eigen/nonsymm.rb +0 -53
  157. data/tests/eigen/nonsymmv.rb +0 -53
  158. data/tests/eigen/symm-herm.rb +0 -74
  159. data/tests/err.rb +0 -58
  160. data/tests/fit.rb +0 -124
  161. data/tests/gsl_test.rb +0 -118
  162. data/tests/gsl_test2.rb +0 -110
  163. data/tests/histo.rb +0 -12
  164. data/tests/integration/integration1.rb +0 -72
  165. data/tests/integration/integration2.rb +0 -71
  166. data/tests/integration/integration3.rb +0 -71
  167. data/tests/integration/integration4.rb +0 -71
  168. data/tests/interp.rb +0 -45
  169. data/tests/linalg/HH.rb +0 -64
  170. data/tests/linalg/LU.rb +0 -47
  171. data/tests/linalg/QR.rb +0 -77
  172. data/tests/linalg/SV.rb +0 -24
  173. data/tests/linalg/TDN.rb +0 -116
  174. data/tests/linalg/TDS.rb +0 -122
  175. data/tests/linalg/bidiag.rb +0 -73
  176. data/tests/linalg/cholesky.rb +0 -20
  177. data/tests/linalg/linalg.rb +0 -158
  178. data/tests/matrix/matrix_complex_test.rb +0 -36
  179. data/tests/matrix/matrix_nmf_test.rb +0 -39
  180. data/tests/matrix/matrix_test.rb +0 -48
  181. data/tests/min.rb +0 -99
  182. data/tests/monte/miser.rb +0 -31
  183. data/tests/monte/vegas.rb +0 -45
  184. data/tests/multifit/test_2dgauss.rb +0 -112
  185. data/tests/multifit/test_brown.rb +0 -90
  186. data/tests/multifit/test_enso.rb +0 -246
  187. data/tests/multifit/test_filip.rb +0 -155
  188. data/tests/multifit/test_gauss.rb +0 -97
  189. data/tests/multifit/test_longley.rb +0 -110
  190. data/tests/multifit/test_multifit.rb +0 -52
  191. data/tests/multimin.rb +0 -139
  192. data/tests/multiroot.rb +0 -131
  193. data/tests/multiset.rb +0 -52
  194. data/tests/narray/blas_dnrm2.rb +0 -20
  195. data/tests/odeiv.rb +0 -353
  196. data/tests/poly/poly.rb +0 -290
  197. data/tests/poly/special.rb +0 -65
  198. data/tests/qrng.rb +0 -131
  199. data/tests/quartic.rb +0 -29
  200. data/tests/randist.rb +0 -134
  201. data/tests/rng.rb +0 -305
  202. data/tests/roots.rb +0 -76
  203. data/tests/run-test.sh +0 -17
  204. data/tests/sf/gsl_test_sf.rb +0 -249
  205. data/tests/sf/test_airy.rb +0 -83
  206. data/tests/sf/test_bessel.rb +0 -306
  207. data/tests/sf/test_coulomb.rb +0 -17
  208. data/tests/sf/test_dilog.rb +0 -25
  209. data/tests/sf/test_gamma.rb +0 -209
  210. data/tests/sf/test_hyperg.rb +0 -356
  211. data/tests/sf/test_legendre.rb +0 -227
  212. data/tests/sf/test_mathieu.rb +0 -59
  213. data/tests/sf/test_mode.rb +0 -19
  214. data/tests/sf/test_sf.rb +0 -839
  215. data/tests/stats.rb +0 -174
  216. data/tests/stats_mt.rb +0 -16
  217. data/tests/sum.rb +0 -98
  218. data/tests/sys.rb +0 -323
  219. data/tests/tensor.rb +0 -419
  220. data/tests/vector/vector_complex_test.rb +0 -101
  221. data/tests/vector/vector_test.rb +0 -141
  222. data/tests/wavelet.rb +0 -142
@@ -1,112 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # Ruby/GSL implementation of GSL "cheb/test.c"
3
- require("gsl")
4
- require("./gsl_test.rb")
5
- include GSL::Test
6
- include Math
7
-
8
- f_T0 = GSL::Function.alloc { |x| 1.0 }
9
- f_T1 = GSL::Function.alloc { |x| x }
10
- f_T2 = GSL::Function.alloc { |x| 2.0*x*x - 1.0 }
11
- f_sin = GSL::Function.alloc { |x| sin(x) }
12
-
13
- tol = 100.0*GSL::DBL_EPSILON
14
-
15
- order = 40
16
-
17
- cs = GSL::Cheb.alloc(order)
18
- csd = GSL::Cheb.alloc(order)
19
- csi = GSL::Cheb.alloc(order)
20
-
21
- GSL::ieee_env_setup()
22
-
23
- cs.init(f_T0, -1.0, 1.0)
24
- for i in 0...order do
25
- c_exp = i == 0 ? 2.0 : 0.0
26
- desc = sprintf("c[%d] for T_0(x)", i)
27
- GSL::Test.test_abs(cs.c[i], c_exp, tol, desc)
28
- end
29
-
30
- cs.init(f_T1, -1.0, 1.0)
31
- for i in 0...order do
32
- c_exp = i == 1 ? 1.0 : 0.0
33
- desc = sprintf("c[%d] for T_1(x)", i)
34
- GSL::Test.test_abs(cs.c[i], c_exp, tol, desc)
35
- end
36
-
37
- cs.init(f_T2, -1.0, 1.0)
38
- for i in 0...order do
39
- c_exp = i == 2 ? 1.0 : 0.0
40
- desc = sprintf("c[%d] for T_2(x)", i)
41
- GSL::Test.test_abs(cs.c[i], c_exp, tol, desc)
42
- end
43
-
44
- cs.init(f_sin, -M_PI, M_PI)
45
- GSL::Test.test_abs(cs.c[0], 0.0, tol, "c[0] for F_sin(x)")
46
- GSL::Test.test_abs(cs.c[1], 5.69230686359506e-01, tol, "c[1] for F_sin(x)")
47
- GSL::Test.test_abs(cs.c[2], 0.0, tol, "c[2] for F_sin(x)")
48
- GSL::Test.test_abs(cs.c[3], -6.66916672405979e-01, tol, "c[3] for F_sin(x)")
49
- GSL::Test.test_abs(cs.c[4], 0.0, tol, "c[4] for F_sin(x)")
50
- GSL::Test.test_abs(cs.c[5], 1.04282368734237e-01, tol, "c[5] for F_sin(x)")
51
-
52
- x = -M_PI
53
- while x < M_PI
54
- r = cs.eval(x)
55
- desc = sprintf("GSL::Cheb#eval, sin\(%.3g\)", x)
56
- GSL::Test.test_abs(r, sin(x), tol, desc)
57
- x += M_PI/100.0
58
- end
59
-
60
- x = -M_PI
61
- while x < M_PI
62
- r, e = cs.eval_err(x)
63
- desc = sprintf("GSL::Cheb#eval_err, sin\(%.3g\)", x)
64
- GSL::Test.test_abs(r, sin(x), tol, desc)
65
- desc = sprintf("GSL::Cheb#eval_err, error sin\(%.3g\)", x)
66
- GSL::Test.test_factor((r-sin(x)).abs + GSL::DBL_EPSILON, e, 10.0, desc)
67
- x += M_PI/100.0
68
- end
69
-
70
- x = -M_PI
71
- while x < M_PI
72
- r = cs.eval_n(25, x)
73
- desc = sprintf("GSL::Cheb#eval_n, sin\(%.3g\)", x)
74
- GSL::Test.test_abs(r, sin(x), tol, desc)
75
- x += M_PI/100.0
76
- end
77
-
78
- x = -M_PI
79
- while x < M_PI
80
- r, e = cs.eval_n_err(25, x)
81
- desc = sprintf("GSL::Cheb#eval_n_err, sin\(%.3g\)", x)
82
- GSL::Test.test_abs(r, sin(x), tol, desc)
83
- desc = sprintf("GSL::Cheb#eval_n_err, error sin\(%.3g\)", x)
84
- GSL::Test.test_factor((r-sin(x)).abs + GSL::DBL_EPSILON, e, 10.0, desc)
85
- x += M_PI/100.0
86
- end
87
-
88
- csd = cs.calc_deriv
89
- #cs.calc_deriv(csd)
90
- #csd = GSL::Cheb.calc_deriv(cs)
91
- #GSL::Cheb.calc_deriv(csd, cs)
92
- x = -M_PI
93
- while x < M_PI
94
- r = csd.eval(x)
95
- desc = sprintf("GSL::Cheb#eval, deriv sin\(%.3g\)", x)
96
- GSL::Test.test_abs(r, cos(x), 1600*tol, desc)
97
- x += M_PI/100.0
98
- end
99
-
100
- csi = cs.calc_integ
101
- #cs.calc_integ(csi)
102
- #csi = GSL::Cheb.calc_integ(cs)
103
- #GSL::Cheb.calc_integ(csi, cs)
104
- x = -M_PI
105
- while x < M_PI
106
- r = csi.eval(x)
107
- desc = sprintf("GSL::Cheb#eval, integ sin\(%.3g\)", x)
108
- GSL::Test.test_abs(r, -(1+cos(x)), tol, desc)
109
- x += M_PI/100.0
110
- end
111
-
112
-
@@ -1,123 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # Ruby/GSL implementation of GSL "combination/test.c"
3
- require("gsl")
4
- require("./gsl_test.rb")
5
- include GSL::Test
6
-
7
- c63 = GSL::Matrix.alloc([0, 1, 2], [0, 1, 3], [0, 1, 4], [0, 1, 5],
8
- [0, 2, 3], [0, 2, 4], [0, 2, 5],
9
- [0, 3, 4], [0, 3, 5],
10
- [0, 4, 5],
11
- [1, 2, 3], [1, 2, 4], [1, 2, 5],
12
- [1, 3, 4], [1, 3, 5],
13
- [1, 4, 5],
14
- [2, 3, 4], [2, 3, 5], [2, 4, 5],
15
- [3, 4, 5])
16
-
17
- GSL::IEEE.env_setup()
18
-
19
- status = false
20
- c = GSL::Combination.alloc(6, 3)
21
- c.init_first
22
-
23
- i = 0
24
- begin
25
- if i >= 20
26
- status = true
27
- break
28
- end
29
- for j in 0...3
30
- status |= (c.data[j] != c63[i,j])
31
- end
32
-
33
- s1 = c.valid?
34
- desc = sprintf("GSL::Combination#valid\(%u\)", i)
35
- GSL::Test.test(s1, desc)
36
- i += 1
37
- end while c.next == GSL::SUCCESS
38
-
39
- GSL::Test.test(status, "GSL::Combination#next, 6 choose 3 combination, 20 steps")
40
-
41
- c.next
42
- c.next
43
- c.next
44
-
45
- for j in 0...3
46
- status |= (c.data[j] != c63[19,j])
47
- end
48
- GSL::Test.test(status, "GSL::Combination#next on the last combination")
49
-
50
- s1 = c.valid?
51
- GSL::Test.test(s1, "GSL::Combination#valid on the last combination")
52
-
53
- d = GSL::Combination.alloc(6, 3)
54
- GSL::Combination.memcpy(d, c)
55
-
56
- status = false
57
- for j in 0...3
58
- status |= (d.data[j] != c.data[j])
59
- end
60
- GSL::Test.test(status, "GSL::Combination.memcpy, 6 choose 3 combination")
61
-
62
- c.init_last
63
- i = 20
64
- begin
65
- if i == 0
66
- status = true
67
- break;
68
- end
69
- i -= 1
70
- for j in 0...3
71
- status |= (c.data[j] != c63[i,j])
72
- end
73
- s1 = c.valid?
74
- desc = sprintf("GSL::Combination#valid\(%u\)", i)
75
- GSL::Test.test(s1, desc)
76
- end while c.prev == GSL::SUCCESS
77
-
78
- GSL::Test.test(status, "GSL::Combination#prev, 6 choose 3 combination, 20 steps")
79
-
80
- c.prev
81
- c.prev
82
- c.prev
83
-
84
- for j in 0...3
85
- status |= (c.data[j] != c63[0,j])
86
- end
87
- GSL::Test.test(status, "GSL::Combination#prev on the first combination")
88
-
89
- s1 = c.valid?
90
- GSL::Test.test(s1, "GSL::Combination#valid on the first combination")
91
- d = GSL::Combination.alloc(6, 3)
92
- GSL::Combination.memcpy(d, c)
93
-
94
- status = false
95
- for j in 0...3
96
- status |= (d.data[j] != c.data[j])
97
- end
98
- GSL::Test.test(status, "GSL::Combination.memcpy, 6 choose 3 combination")
99
-
100
- c = GSL::Combination.calloc(7, 0)
101
- status |= (c.next != GSL::FAILURE)
102
- status |= (c.next != GSL::FAILURE)
103
- status |= (c.prev != GSL::FAILURE)
104
- status |= (c.prev != GSL::FAILURE)
105
- GSL::Test.test(status, "GSL::Combination 7 choose 0")
106
-
107
- c = GSL::Combination.calloc(7, 7)
108
- for j in 0...7
109
- status |= (c.get(j) != j)
110
- end
111
- status |= (c.next != GSL::FAILURE)
112
- for j in 0...7
113
- status |= (c.get(j) != j)
114
- end
115
- status |= (c.next != GSL::FAILURE)
116
- for j in 0...7
117
- status |= (c.get(j) != j)
118
- end
119
- status |= (c.next != GSL::FAILURE)
120
- for j in 0...7
121
- status |= (c.get(j) != j)
122
- end
123
- GSL::Test.test(status, "GSL::Combination 7 choose 7")
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- require("gsl")
3
- require("./gsl_test.rb")
4
- include GSL::Test
5
- include Math
6
-
7
- for i in 0...10
8
- r = (i - 5.0)*0.3
9
- t = 2.0*M_PI*i/5.0
10
- x = r*cos(t)
11
- y = r*sin(t)
12
- z = GSL::Complex.polar(r, t)
13
- desc = sprintf("gsl_complex_polar real part at (r=%g,t=%g)", r, t)
14
- GSL::Test.test_rel(z.real, x, 10*GSL::DBL_EPSILON, desc)
15
- desc = sprintf("gsl_complex_polar imag part at (r=%g,t=%g)", r, t)
16
- GSL::Test.test_rel(z.imag, y, 10*GSL::DBL_EPSILON, desc)
17
- end
@@ -1,24 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # Ruby/GSL implementation of GSL "const/test.c"
3
- require("gsl")
4
- require("./gsl_test.rb")
5
- include GSL::Test
6
- include Math
7
- include GSL::CONST
8
-
9
- GSL::IEEE::env_setup()
10
-
11
- c = MKSA::SPEED_OF_LIGHT
12
- eps = MKSA::VACUUM_PERMITTIVITY
13
- mu = MKSA::VACUUM_PERMEABILITY
14
- GSL::Test.test_rel(c, 1.0/sqrt(eps*mu), 1e-6, "speed of light (mks)")
15
-
16
- ly = CGSM::LIGHT_YEAR
17
- c = CGSM::SPEED_OF_LIGHT
18
- y = 365.2425 * CGSM::DAY
19
- GSL::Test.test_rel(ly, c * y, 1e-6, "light year (cgs)")
20
-
21
- micro = NUM::MICRO
22
- mega = NUM::MEGA
23
- kilo = NUM::KILO
24
- GSL::Test.test_rel(mega/kilo, 1/(micro*kilo), 1e-10, "kilo (mega/kilo, 1/(micro*kilo))");
@@ -1,85 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # Ruby/GSL implementation of GSL "deriv/test.c"
3
- require("gsl")
4
- require("./gsl_test.rb")
5
- include GSL::Test
6
-
7
- include Math
8
-
9
- f1 = GSL::Function.alloc { |x| exp(x) }
10
- df1 = GSL::Function.alloc { |x| exp(x) }
11
-
12
- f2 = GSL::Function.alloc { |x|
13
- if x >= 0.0; x*sqrt(x);
14
- else; 0.0; end
15
- }
16
- df2 = GSL::Function.alloc { |x|
17
- if x >= 0.0; 1.5*sqrt(x);
18
- else; 0.0; end
19
- }
20
-
21
- f3 = GSL::Function.alloc { |x|
22
- if x != 0.0; sin(1.0/x);
23
- else; 0.0; end
24
- }
25
- df3 = GSL::Function.alloc { |x|
26
- if x != 0.0; -cos(1.0/x)/(x*x);
27
- else; 0.0; end
28
- }
29
-
30
- f4 = GSL::Function.alloc { |x| exp(-x*x) }
31
- df4 = GSL::Function.alloc { |x| -2.0*x*exp(-x*x) }
32
-
33
- f5 = GSL::Function.alloc { |x| x*x }
34
- df5 = GSL::Function.alloc { |x| 2.0*x }
35
-
36
- f6 = GSL::Function.alloc { |x| 1.0/x }
37
- df6 = GSL::Function.alloc { |x| -1.0/(x*x) }
38
-
39
- def test_deriv(deriv, f, df, x, desc)
40
- expected = df.eval(x)
41
- h = 1e-4
42
- case deriv
43
- when "central"
44
- result, abserr = f.deriv_central(x, h)
45
- when "forward"
46
- result, abserr = f.deriv_forward(x, h)
47
- when "backward"
48
- result, abserr = f.deriv_backward(x, h)
49
- else
50
- raise("undefined operation")
51
- end
52
- GSL::Test::test_abs(result, expected, GSL::MIN(h, expected.abs) + GSL::DBL_EPSILON, desc)
53
- if abserr < (result - expected).abs
54
- GSL::Test::test_factor(abserr, (result - expected).abs, 2, desc + " error estimate")
55
- elsif result == expected or expected == 0.0
56
- GSL::Test::test_abs(abserr, 0.0, 1e-6, desc + " abserr")
57
- else
58
- d = (result - expected).abs
59
- GSL::Test::test_abs(abserr, (result - expected).abs, 1e6*d, desc + " abserr")
60
- end
61
- end
62
-
63
- test_deriv("central", f1, df1, 1.0, "exp(x), x=1, central deriv")
64
- test_deriv("forward", f1, df1, 1.0, "exp(x), x=1, forward deriv")
65
- test_deriv("backward", f1, df1, 1.0, "exp(x), x=1, backward deriv")
66
-
67
- test_deriv("central", f2, df2, 0.1, "x^(3/2), x=0.1, central deriv")
68
- test_deriv("forward", f2, df2, 0.1, "x^(3/2), x=0.1, forward deriv")
69
- test_deriv("backward", f2, df2, 0.1, "x^(3/2), x=0.1, backward deriv")
70
-
71
- test_deriv("central", f3, df3, 0.45, "sin(1/x), x=0.45, central deriv")
72
- test_deriv("forward", f3, df3, 0.45, "sin(1/x), x=0.45, forward deriv")
73
- test_deriv("backward", f3, df3, 0.45, "sin(1/x), x=0.45, backward deriv")
74
-
75
- test_deriv("central", f4, df4, 0.5, "exp(-x^2), x=0.5, central deriv")
76
- test_deriv("forward", f4, df4, 0.5, "exp(-x^2), x=0.5, forward deriv")
77
- test_deriv("backward", f4, df4, 0.5, "exp(-x^2), x=0.5, backward deriv")
78
-
79
- test_deriv("central", f5, df5, 0.0, "x^2, x=0, central deriv")
80
- test_deriv("forward", f5, df5, 0.0, "x^2, x=0, forward deriv")
81
- test_deriv("backward", f5, df5, 0.0, "x^2, x=0, backward deriv")
82
-
83
- test_deriv("central", f6, df6, 10.0, "1/x, x=10, central deriv")
84
- test_deriv("forward", f6, df6, 10.0, "1/x, x=10, forward deriv")
85
- test_deriv("backward", f6, df6, 10.0, "1/x, x=10, backward deriv")
@@ -1,17 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # Test gsl/dht/test.c: test_dht_exact()
3
- # Expected results:
4
- # vout[0]=0.375254649407520
5
- # vout[1]=(-0.133507872695560
6
- # vout[2]=0.044679925143840
7
-
8
- require("gsl")
9
- vin = GSL::Vector.alloc(1, 2, 3)
10
- t = GSL::Dht.alloc(3, 1.0, 1.0)
11
- vout = t.apply(vin)
12
- p vout
13
-
14
- vin2 = t.apply(vout)
15
- vin2.scale!(13.323691936314223*13.323691936314223)
16
- p vin2
17
-
@@ -1,23 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # Test gsl/dht/test.c: test_dht_simple()
3
- # Expected results:
4
- # vout[0]=4.00
5
- # vout[5]=1.84
6
- # vout[10]=1.27
7
- # vout[35]=0.352
8
- # vout[100]=0.0237
9
-
10
- require("gsl")
11
-
12
- N = 128
13
- t = GSL::Dht.alloc(N, 0.0, 100.0)
14
- vin = GSL::Vector.alloc(N)
15
- for n in 0...N do
16
- x = t.x_sample(n)
17
- vin[n] = 1.0/(1.0 + x*x)
18
- end
19
-
20
- vout = t.apply(vin)
21
-
22
- printf("%e %e %e %e %e\n", vout[0], vout[5], vout[10], vout[35], vout[100])
23
-
@@ -1,23 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # Test gsl/dht/test.c: test_dht_exp1()
3
- # Expected results:
4
- # vout[0]=0.181
5
- # vout[5]=0.357
6
- # vout[10]=0.211
7
- # vout[35]=0.0289
8
- # vout[100]=0.00221
9
-
10
- require("gsl")
11
-
12
- N = 128
13
- t = GSL::Dht.alloc(N, 1.0, 20.0)
14
- vin = GSL::Vector.alloc(N)
15
- for n in 0...N do
16
- x = t.x_sample(n)
17
- vin[n] = Math::exp(-x)
18
- end
19
-
20
- vout = t.apply(vin)
21
-
22
- printf("%e %e %e %e %e\n", vout[0], vout[5], vout[10], vout[35], vout[100])
23
-
@@ -1,23 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # Test gsl/dht/test.c: test_dht_poly1()
3
- # Expected results:
4
- # vout[0]=0.057274214
5
- # vout[5]=-0.000190850
6
- # vout[10]=0.000024342
7
- # vout[35]=-4.04e-07
8
- # vout[100]=1.0e-08
9
-
10
- require("gsl")
11
-
12
- N = 128
13
- t = GSL::Dht.alloc(N, 1.0, 1.0)
14
- vin = GSL::Vector.alloc(N)
15
- for n in 0...N do
16
- x = t.x_sample(n)
17
- vin[n] = x*(1.0 - x*x)
18
- end
19
-
20
- vout = t.apply(vin)
21
-
22
- printf("%e %e %e %e %e\n", vout[0], vout[5], vout[10], vout[35], vout[100])
23
-