gsl 1.12.108

Sign up to get free protection for your applications and to get access to all the features.
Files changed (158) hide show
  1. data/README.rdoc +29 -0
  2. data/Rakefile +54 -0
  3. data/VERSION +2 -0
  4. data/ext/MANIFEST +119 -0
  5. data/ext/alf.c +206 -0
  6. data/ext/array.c +666 -0
  7. data/ext/array_complex.c +247 -0
  8. data/ext/blas.c +29 -0
  9. data/ext/blas1.c +731 -0
  10. data/ext/blas2.c +1093 -0
  11. data/ext/blas3.c +881 -0
  12. data/ext/block.c +44 -0
  13. data/ext/block_source.c +886 -0
  14. data/ext/bspline.c +130 -0
  15. data/ext/bundle.c +3 -0
  16. data/ext/cdf.c +754 -0
  17. data/ext/cheb.c +542 -0
  18. data/ext/combination.c +283 -0
  19. data/ext/common.c +325 -0
  20. data/ext/complex.c +1004 -0
  21. data/ext/const.c +673 -0
  22. data/ext/const_additional.c +120 -0
  23. data/ext/cqp.c +283 -0
  24. data/ext/deriv.c +195 -0
  25. data/ext/dht.c +361 -0
  26. data/ext/diff.c +166 -0
  27. data/ext/dirac.c +395 -0
  28. data/ext/eigen.c +2373 -0
  29. data/ext/error.c +194 -0
  30. data/ext/extconf.rb +281 -0
  31. data/ext/fcmp.c +66 -0
  32. data/ext/fft.c +1092 -0
  33. data/ext/fit.c +205 -0
  34. data/ext/fresnel.c +312 -0
  35. data/ext/function.c +524 -0
  36. data/ext/geometry.c +139 -0
  37. data/ext/graph.c +1638 -0
  38. data/ext/gsl.c +271 -0
  39. data/ext/gsl_narray.c +653 -0
  40. data/ext/histogram.c +1995 -0
  41. data/ext/histogram2d.c +1068 -0
  42. data/ext/histogram3d.c +884 -0
  43. data/ext/histogram3d_source.c +750 -0
  44. data/ext/histogram_find.c +101 -0
  45. data/ext/histogram_oper.c +159 -0
  46. data/ext/ieee.c +98 -0
  47. data/ext/integration.c +1138 -0
  48. data/ext/interp.c +512 -0
  49. data/ext/jacobi.c +739 -0
  50. data/ext/linalg.c +4047 -0
  51. data/ext/linalg_complex.c +741 -0
  52. data/ext/math.c +725 -0
  53. data/ext/matrix.c +39 -0
  54. data/ext/matrix_complex.c +1732 -0
  55. data/ext/matrix_double.c +560 -0
  56. data/ext/matrix_int.c +256 -0
  57. data/ext/matrix_source.c +2733 -0
  58. data/ext/min.c +250 -0
  59. data/ext/monte.c +992 -0
  60. data/ext/multifit.c +1879 -0
  61. data/ext/multimin.c +808 -0
  62. data/ext/multimin_fsdf.c +156 -0
  63. data/ext/multiroots.c +955 -0
  64. data/ext/ndlinear.c +321 -0
  65. data/ext/nmf.c +167 -0
  66. data/ext/nmf_wrap.c +72 -0
  67. data/ext/ntuple.c +469 -0
  68. data/ext/odeiv.c +959 -0
  69. data/ext/ool.c +879 -0
  70. data/ext/oper_complex_source.c +253 -0
  71. data/ext/permutation.c +596 -0
  72. data/ext/poly.c +42 -0
  73. data/ext/poly2.c +265 -0
  74. data/ext/poly_source.c +1885 -0
  75. data/ext/qrng.c +171 -0
  76. data/ext/randist.c +1873 -0
  77. data/ext/rational.c +480 -0
  78. data/ext/rng.c +612 -0
  79. data/ext/root.c +408 -0
  80. data/ext/sf.c +1494 -0
  81. data/ext/sf_airy.c +200 -0
  82. data/ext/sf_bessel.c +867 -0
  83. data/ext/sf_clausen.c +28 -0
  84. data/ext/sf_coulomb.c +206 -0
  85. data/ext/sf_coupling.c +118 -0
  86. data/ext/sf_dawson.c +29 -0
  87. data/ext/sf_debye.c +157 -0
  88. data/ext/sf_dilog.c +42 -0
  89. data/ext/sf_elementary.c +44 -0
  90. data/ext/sf_ellint.c +206 -0
  91. data/ext/sf_elljac.c +29 -0
  92. data/ext/sf_erfc.c +93 -0
  93. data/ext/sf_exp.c +164 -0
  94. data/ext/sf_expint.c +211 -0
  95. data/ext/sf_fermi_dirac.c +148 -0
  96. data/ext/sf_gamma.c +344 -0
  97. data/ext/sf_gegenbauer.c +96 -0
  98. data/ext/sf_hyperg.c +197 -0
  99. data/ext/sf_laguerre.c +112 -0
  100. data/ext/sf_lambert.c +47 -0
  101. data/ext/sf_legendre.c +367 -0
  102. data/ext/sf_log.c +104 -0
  103. data/ext/sf_mathieu.c +238 -0
  104. data/ext/sf_power.c +46 -0
  105. data/ext/sf_psi.c +98 -0
  106. data/ext/sf_synchrotron.c +48 -0
  107. data/ext/sf_transport.c +76 -0
  108. data/ext/sf_trigonometric.c +207 -0
  109. data/ext/sf_zeta.c +119 -0
  110. data/ext/signal.c +310 -0
  111. data/ext/siman.c +718 -0
  112. data/ext/sort.c +208 -0
  113. data/ext/spline.c +395 -0
  114. data/ext/stats.c +799 -0
  115. data/ext/sum.c +168 -0
  116. data/ext/tamu_anova.c +56 -0
  117. data/ext/tensor.c +38 -0
  118. data/ext/tensor_source.c +1123 -0
  119. data/ext/vector.c +38 -0
  120. data/ext/vector_complex.c +2236 -0
  121. data/ext/vector_double.c +1433 -0
  122. data/ext/vector_int.c +204 -0
  123. data/ext/vector_source.c +3329 -0
  124. data/ext/wavelet.c +937 -0
  125. data/include/rb_gsl.h +151 -0
  126. data/include/rb_gsl_array.h +238 -0
  127. data/include/rb_gsl_cheb.h +21 -0
  128. data/include/rb_gsl_common.h +343 -0
  129. data/include/rb_gsl_complex.h +25 -0
  130. data/include/rb_gsl_const.h +29 -0
  131. data/include/rb_gsl_dirac.h +13 -0
  132. data/include/rb_gsl_eigen.h +17 -0
  133. data/include/rb_gsl_fft.h +62 -0
  134. data/include/rb_gsl_fit.h +25 -0
  135. data/include/rb_gsl_function.h +27 -0
  136. data/include/rb_gsl_graph.h +70 -0
  137. data/include/rb_gsl_histogram.h +63 -0
  138. data/include/rb_gsl_histogram3d.h +97 -0
  139. data/include/rb_gsl_integration.h +17 -0
  140. data/include/rb_gsl_interp.h +46 -0
  141. data/include/rb_gsl_linalg.h +25 -0
  142. data/include/rb_gsl_math.h +26 -0
  143. data/include/rb_gsl_odeiv.h +21 -0
  144. data/include/rb_gsl_poly.h +71 -0
  145. data/include/rb_gsl_rational.h +37 -0
  146. data/include/rb_gsl_rng.h +21 -0
  147. data/include/rb_gsl_root.h +22 -0
  148. data/include/rb_gsl_sf.h +119 -0
  149. data/include/rb_gsl_statistics.h +17 -0
  150. data/include/rb_gsl_tensor.h +45 -0
  151. data/include/rb_gsl_with_narray.h +22 -0
  152. data/include/templates_off.h +87 -0
  153. data/include/templates_on.h +241 -0
  154. data/lib/gsl/gnuplot.rb +41 -0
  155. data/lib/gsl/oper.rb +68 -0
  156. data/lib/ool.rb +22 -0
  157. data/lib/ool/conmin.rb +30 -0
  158. metadata +224 -0
@@ -0,0 +1,22 @@
1
+
2
+ module OOL
3
+ module Conmin
4
+ class Pgrad_parameters < Array
5
+ attr_accessor :fmin, :tol, :alpha, :sigma1, :sigma2
6
+ end
7
+ class Spg_parameters < Array
8
+ attr_accessor :fmin, :tol, :M, :alphamin, :alphamax, :gamma
9
+ attr_accessor :sigma1, :sigma2
10
+ end
11
+ class Gencan_parameters < Array
12
+ attr_accessor :epsgpen, :epsgpsn, :fmin, :udelta0
13
+ attr_accessor :ucgmia, :ucgmib
14
+ attr_accessor :cg_scre, :cg_gpnf, :cg_epsi, :cg_epsf
15
+ attr_accessor :cg_epsnqmp, :cg_maxitnqmp, :nearlyq
16
+ attr_accessor :nint, :next, :mininterp, :maxextrap
17
+ attr_accessor :trtype, :eta, :deltamin, :lspgmi, :lspgma
18
+ attr_accessor :theta, :gamma, :beta, :sigma1, :sigma2
19
+ attr_accessor :epsrel, :epsabs, :infrel, :infabs
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,30 @@
1
+
2
+ module OOL
3
+ module Conmin
4
+ class Minimizer
5
+ class Pgrad
6
+ class Parameters
7
+ attr_accessor :fmin, :tol, :alpha, :sigma1, :sigma2
8
+ end
9
+ end
10
+ class Spg
11
+ class Parameters
12
+ attr_accessor :fmin, :tol, :M, :alphamin, :alphamax, :gamma
13
+ attr_accessor :sigma1, :sigma2
14
+ end
15
+ end
16
+ class Gencan
17
+ class Parameters
18
+ attr_accessor :epsgpen, :epsgpsn, :fmin, :udelta0
19
+ attr_accessor :ucgmia, :ucgmib
20
+ attr_accessor :cg_scre, :cg_gpnf, :cg_epsi, :cg_epsf
21
+ attr_accessor :cg_epsnqmp, :cg_maxitnqmp, :nearlyq
22
+ attr_accessor :nint, :next, :mininterp, :maxextrap
23
+ attr_accessor :trtype, :eta, :deltamin, :lspgmi, :lspgma
24
+ attr_accessor :theta, :gamma, :beta, :sigma1, :sigma2
25
+ attr_accessor :epsrel, :epsabs, :infrel, :infabs
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
metadata ADDED
@@ -0,0 +1,224 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gsl
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.12.108
5
+ platform: ruby
6
+ authors:
7
+ - Yoshiki Tsunesada
8
+ - David MacMahon
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2009-11-30 00:00:00 +02:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: narray
18
+ type: :runtime
19
+ version_requirement:
20
+ version_requirements: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: 0.5.9
25
+ version:
26
+ description: RubyGSL is a Ruby interface to the GNU Scientific Library, for numerical computing with Ruby
27
+ email: y-tsunesada@mm.em-net.ne.jp
28
+ executables: []
29
+
30
+ extensions:
31
+ - ext/extconf.rb
32
+ extra_rdoc_files: []
33
+
34
+ files:
35
+ - README.rdoc
36
+ - VERSION
37
+ - Rakefile
38
+ - ext/alf.c
39
+ - ext/array.c
40
+ - ext/array_complex.c
41
+ - ext/blas.c
42
+ - ext/blas1.c
43
+ - ext/blas2.c
44
+ - ext/blas3.c
45
+ - ext/block.c
46
+ - ext/block_source.c
47
+ - ext/bspline.c
48
+ - ext/bundle.c
49
+ - ext/cdf.c
50
+ - ext/cheb.c
51
+ - ext/combination.c
52
+ - ext/common.c
53
+ - ext/complex.c
54
+ - ext/const.c
55
+ - ext/const_additional.c
56
+ - ext/cqp.c
57
+ - ext/deriv.c
58
+ - ext/dht.c
59
+ - ext/diff.c
60
+ - ext/dirac.c
61
+ - ext/eigen.c
62
+ - ext/error.c
63
+ - ext/extconf.rb
64
+ - ext/fcmp.c
65
+ - ext/fft.c
66
+ - ext/fit.c
67
+ - ext/fresnel.c
68
+ - ext/function.c
69
+ - ext/geometry.c
70
+ - ext/graph.c
71
+ - ext/gsl.c
72
+ - ext/gsl_narray.c
73
+ - ext/histogram.c
74
+ - ext/histogram2d.c
75
+ - ext/histogram3d.c
76
+ - ext/histogram3d_source.c
77
+ - ext/histogram_find.c
78
+ - ext/histogram_oper.c
79
+ - ext/ieee.c
80
+ - ext/integration.c
81
+ - ext/interp.c
82
+ - ext/jacobi.c
83
+ - ext/linalg.c
84
+ - ext/linalg_complex.c
85
+ - ext/MANIFEST
86
+ - ext/math.c
87
+ - ext/matrix.c
88
+ - ext/matrix_complex.c
89
+ - ext/matrix_double.c
90
+ - ext/matrix_int.c
91
+ - ext/matrix_source.c
92
+ - ext/min.c
93
+ - ext/monte.c
94
+ - ext/multifit.c
95
+ - ext/multimin.c
96
+ - ext/multimin_fsdf.c
97
+ - ext/multiroots.c
98
+ - ext/ndlinear.c
99
+ - ext/nmf.c
100
+ - ext/nmf_wrap.c
101
+ - ext/ntuple.c
102
+ - ext/odeiv.c
103
+ - ext/ool.c
104
+ - ext/oper_complex_source.c
105
+ - ext/permutation.c
106
+ - ext/poly.c
107
+ - ext/poly2.c
108
+ - ext/poly_source.c
109
+ - ext/qrng.c
110
+ - ext/randist.c
111
+ - ext/rational.c
112
+ - ext/rng.c
113
+ - ext/root.c
114
+ - ext/sf.c
115
+ - ext/sf_airy.c
116
+ - ext/sf_bessel.c
117
+ - ext/sf_clausen.c
118
+ - ext/sf_coulomb.c
119
+ - ext/sf_coupling.c
120
+ - ext/sf_dawson.c
121
+ - ext/sf_debye.c
122
+ - ext/sf_dilog.c
123
+ - ext/sf_elementary.c
124
+ - ext/sf_ellint.c
125
+ - ext/sf_elljac.c
126
+ - ext/sf_erfc.c
127
+ - ext/sf_exp.c
128
+ - ext/sf_expint.c
129
+ - ext/sf_fermi_dirac.c
130
+ - ext/sf_gamma.c
131
+ - ext/sf_gegenbauer.c
132
+ - ext/sf_hyperg.c
133
+ - ext/sf_laguerre.c
134
+ - ext/sf_lambert.c
135
+ - ext/sf_legendre.c
136
+ - ext/sf_log.c
137
+ - ext/sf_mathieu.c
138
+ - ext/sf_power.c
139
+ - ext/sf_psi.c
140
+ - ext/sf_synchrotron.c
141
+ - ext/sf_transport.c
142
+ - ext/sf_trigonometric.c
143
+ - ext/sf_zeta.c
144
+ - ext/signal.c
145
+ - ext/siman.c
146
+ - ext/sort.c
147
+ - ext/spline.c
148
+ - ext/stats.c
149
+ - ext/sum.c
150
+ - ext/tamu_anova.c
151
+ - ext/tensor.c
152
+ - ext/tensor_source.c
153
+ - ext/vector.c
154
+ - ext/vector_complex.c
155
+ - ext/vector_double.c
156
+ - ext/vector_int.c
157
+ - ext/vector_source.c
158
+ - ext/wavelet.c
159
+ - lib/gsl/gnuplot.rb
160
+ - lib/gsl/oper.rb
161
+ - lib/ool/conmin.rb
162
+ - lib/ool.rb
163
+ - include/rb_gsl.h
164
+ - include/rb_gsl_array.h
165
+ - include/rb_gsl_cheb.h
166
+ - include/rb_gsl_common.h
167
+ - include/rb_gsl_complex.h
168
+ - include/rb_gsl_const.h
169
+ - include/rb_gsl_dirac.h
170
+ - include/rb_gsl_eigen.h
171
+ - include/rb_gsl_fft.h
172
+ - include/rb_gsl_fit.h
173
+ - include/rb_gsl_function.h
174
+ - include/rb_gsl_graph.h
175
+ - include/rb_gsl_histogram.h
176
+ - include/rb_gsl_histogram3d.h
177
+ - include/rb_gsl_integration.h
178
+ - include/rb_gsl_interp.h
179
+ - include/rb_gsl_linalg.h
180
+ - include/rb_gsl_math.h
181
+ - include/rb_gsl_odeiv.h
182
+ - include/rb_gsl_poly.h
183
+ - include/rb_gsl_rational.h
184
+ - include/rb_gsl_rng.h
185
+ - include/rb_gsl_root.h
186
+ - include/rb_gsl_sf.h
187
+ - include/rb_gsl_statistics.h
188
+ - include/rb_gsl_tensor.h
189
+ - include/rb_gsl_with_narray.h
190
+ - include/templates_off.h
191
+ - include/templates_on.h
192
+ has_rdoc: true
193
+ homepage: http://rb-gsl.rubyforge.org/
194
+ licenses: []
195
+
196
+ post_install_message:
197
+ rdoc_options: []
198
+
199
+ require_paths:
200
+ - lib
201
+ - lib/gsl
202
+ - lib/ool
203
+ - ext
204
+ required_ruby_version: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: 1.8.1
209
+ version:
210
+ required_rubygems_version: !ruby/object:Gem::Requirement
211
+ requirements:
212
+ - - ">="
213
+ - !ruby/object:Gem::Version
214
+ version: "0"
215
+ version:
216
+ requirements:
217
+ - GSL (http://www.gnu.org/software/gsl/)
218
+ rubyforge_project: rb-gsl
219
+ rubygems_version: 1.3.5
220
+ signing_key:
221
+ specification_version: 3
222
+ summary: Ruby interface to GSL
223
+ test_files: []
224
+