mdarray 0.5.5.2-java → 0.5.6-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (209) hide show
  1. checksums.yaml +4 -4
  2. data/config.rb +29 -95
  3. data/doc/BinaryOperator.html +20 -21
  4. data/doc/BitwiseOperators.html +18 -8
  5. data/doc/BitwiseOperators/BinaryAnd.html +189 -0
  6. data/doc/BitwiseOperators/BinaryLeftShift.html +189 -0
  7. data/doc/BitwiseOperators/BinaryOnesComplement.html +189 -0
  8. data/doc/BitwiseOperators/BinaryOr.html +189 -0
  9. data/doc/BitwiseOperators/BinaryRightShift.html +189 -0
  10. data/doc/BitwiseOperators/BinaryXor.html +189 -0
  11. data/doc/BooleanFunctions.html +18 -8
  12. data/doc/BooleanFunctions/And.html +189 -0
  13. data/doc/BooleanFunctions/Not.html +189 -0
  14. data/doc/BooleanFunctions/Or.html +189 -0
  15. data/doc/BooleanMDArray.html +10 -10
  16. data/doc/ByteMDArray.html +73 -14
  17. data/doc/CernDoubleFunctions.html +208 -0
  18. data/doc/CernFloatFunctions.html +208 -0
  19. data/doc/CernFunctions.html +828 -0
  20. data/doc/CernIntFunctions.html +208 -0
  21. data/doc/CernLongFunctions.html +208 -0
  22. data/doc/CharMDArray.html +181 -0
  23. data/doc/Colt.html +18 -20
  24. data/doc/ComparisonOperators.html +18 -8
  25. data/doc/ComparisonOperators/Eq.html +189 -0
  26. data/doc/ComparisonOperators/Ge.html +189 -0
  27. data/doc/ComparisonOperators/Gt.html +189 -0
  28. data/doc/ComparisonOperators/Le.html +189 -0
  29. data/doc/ComparisonOperators/Lt.html +189 -0
  30. data/doc/Const.html +107 -47
  31. data/doc/Csv.html +325 -113
  32. data/doc/Csv/Dimension.html +771 -0
  33. data/doc/Csv/Dimensions.html +654 -0
  34. data/doc/DDescriptive.html +573 -625
  35. data/doc/DoubleMDArray.html +40 -172
  36. data/doc/DoubleStatList.html +19 -20
  37. data/doc/FastBinaryOperator.html +166 -148
  38. data/doc/FastUnaryOperator.html +104 -109
  39. data/doc/FloatMDArray.html +55 -16
  40. data/doc/FunctionCreation.html +53 -273
  41. data/doc/FunctionMap.html +381 -93
  42. data/doc/GenericFunctions.html +18 -8
  43. data/doc/GenericFunctions/Null.html +187 -0
  44. data/doc/IntMDArray.html +77 -16
  45. data/doc/Java/CernJetMathTdouble/DoubleFunctions.html +120 -0
  46. data/doc/Java/CernJetMathTfloat/FloatFunctions.html +120 -0
  47. data/doc/Java/CernJetMathTint/IntFunctions.html +120 -0
  48. data/doc/Java/CernJetMathTlong/LongFunctions.html +120 -0
  49. data/doc/LazyBinaryOperator.html +714 -0
  50. data/doc/LazyMDArray.html +990 -0
  51. data/doc/LazyMDArray/BinaryComp.html +282 -0
  52. data/doc/LazyMDArray/UnaryComp.html +280 -0
  53. data/doc/LazyUnaryOperator.html +537 -0
  54. data/doc/LongMDArray.html +59 -15
  55. data/doc/MDArray.html +3223 -2181
  56. data/doc/MDArray/Counter.html +321 -1233
  57. data/doc/MDArray/IteratorFast.html +177 -116
  58. data/doc/MDArray/IteratorFastBoolean.html +37 -41
  59. data/doc/MDArray/IteratorFastByte.html +46 -39
  60. data/doc/MDArray/IteratorFastChar.html +37 -41
  61. data/doc/MDArray/IteratorFastDouble.html +37 -41
  62. data/doc/MDArray/IteratorFastFloat.html +37 -41
  63. data/doc/MDArray/IteratorFastInt.html +37 -41
  64. data/doc/MDArray/IteratorFastLong.html +37 -41
  65. data/doc/MDArray/IteratorFastShort.html +37 -41
  66. data/doc/MDArray/Section.html +561 -0
  67. data/doc/Nashorn.html +1407 -0
  68. data/doc/NetCDF.html +749 -0
  69. data/doc/NetCDF/Attribute.html +875 -0
  70. data/doc/NetCDF/AttributeWriter.html +286 -0
  71. data/doc/NetCDF/CDMNode.html +460 -0
  72. data/doc/NetCDF/Dimension.html +559 -0
  73. data/doc/NetCDF/DimensionWriter.html +642 -0
  74. data/doc/NetCDF/File.html +1593 -0
  75. data/doc/NetCDF/FileParent.html +674 -0
  76. data/doc/NetCDF/FileWriter.html +2875 -0
  77. data/doc/NetCDF/Group.html +685 -0
  78. data/doc/NetCDF/GroupWriter.html +851 -0
  79. data/doc/NetCDF/TimeVariable.html +646 -0
  80. data/doc/NetCDF/Variable.html +2994 -0
  81. data/doc/NetCDF/VariableWriter.html +420 -0
  82. data/doc/NonNumericalMDArray.html +11 -11
  83. data/doc/NumericFunctions.html +38 -30
  84. data/doc/NumericFunctions/Abs.html +189 -0
  85. data/doc/NumericFunctions/Add.html +189 -0
  86. data/doc/NumericFunctions/Ceil.html +189 -0
  87. data/doc/NumericFunctions/Cube.html +189 -0
  88. data/doc/NumericFunctions/Div.html +189 -0
  89. data/doc/NumericFunctions/Floor.html +189 -0
  90. data/doc/NumericFunctions/Fourth.html +189 -0
  91. data/doc/NumericFunctions/IsZero.html +189 -0
  92. data/doc/NumericFunctions/Max.html +189 -0
  93. data/doc/NumericFunctions/Min.html +189 -0
  94. data/doc/NumericFunctions/Mul.html +189 -0
  95. data/doc/NumericFunctions/Power.html +189 -0
  96. data/doc/NumericFunctions/Square.html +189 -0
  97. data/doc/NumericFunctions/Sub.html +189 -0
  98. data/doc/NumericFunctions/Truncate.html +189 -0
  99. data/doc/NumericalMDArray.html +14 -15
  100. data/doc/Operator.html +318 -109
  101. data/doc/Proc.html +120 -129
  102. data/doc/RubyBinaryOperator.html +66 -70
  103. data/doc/RubyFunctions.html +572 -27
  104. data/doc/RubyMath.html +18 -8
  105. data/doc/RubyMath/Acos.html +189 -0
  106. data/doc/RubyMath/Acosh.html +189 -0
  107. data/doc/RubyMath/Asin.html +189 -0
  108. data/doc/RubyMath/Asinh.html +189 -0
  109. data/doc/RubyMath/Atan.html +189 -0
  110. data/doc/RubyMath/Atan2.html +189 -0
  111. data/doc/RubyMath/Atanh.html +189 -0
  112. data/doc/RubyMath/Cbrt.html +189 -0
  113. data/doc/RubyMath/Cos.html +189 -0
  114. data/doc/RubyMath/Cosh.html +189 -0
  115. data/doc/RubyMath/Erf.html +189 -0
  116. data/doc/RubyMath/Erfc.html +189 -0
  117. data/doc/RubyMath/Exp.html +189 -0
  118. data/doc/RubyMath/Gamma.html +189 -0
  119. data/doc/RubyMath/Hypot.html +189 -0
  120. data/doc/RubyMath/Ldexp.html +189 -0
  121. data/doc/RubyMath/Log.html +189 -0
  122. data/doc/RubyMath/Log10.html +189 -0
  123. data/doc/RubyMath/Log2.html +189 -0
  124. data/doc/RubyMath/Neg.html +189 -0
  125. data/doc/RubyMath/Sin.html +189 -0
  126. data/doc/RubyMath/Sinh.html +189 -0
  127. data/doc/RubyMath/Sqrt.html +189 -0
  128. data/doc/RubyMath/Tan.html +189 -0
  129. data/doc/RubyMath/Tanh.html +189 -0
  130. data/doc/RubyStats.html +8 -8
  131. data/doc/RubyUnaryOperator.html +61 -65
  132. data/doc/ShortMDArray.html +69 -14
  133. data/doc/Sol.html +700 -0
  134. data/doc/Sol/BarChart.html +181 -0
  135. data/doc/Sol/BaseChart.html +800 -0
  136. data/doc/Sol/Bootstrap.html +1137 -0
  137. data/doc/Sol/Bridge.html +586 -0
  138. data/doc/Sol/Chart.html +1162 -0
  139. data/doc/Sol/CoordinateChart.html +679 -0
  140. data/doc/Sol/Dashboard.html +2094 -0
  141. data/doc/Sol/Dashboard/DCFX.html +786 -0
  142. data/doc/Sol/Dashboard/MyHandle.html +338 -0
  143. data/doc/Sol/Dashboard/MyService.html +202 -0
  144. data/doc/Sol/Dashboard/MyTask.html +291 -0
  145. data/doc/Sol/Interval.html +1213 -0
  146. data/doc/Sol/LineChart.html +346 -0
  147. data/doc/Sol/LinearScale.html +334 -0
  148. data/doc/Sol/Margins.html +219 -0
  149. data/doc/Sol/OrdinalScale.html +263 -0
  150. data/doc/Sol/Scale.html +462 -0
  151. data/doc/Sol/Stack.html +199 -0
  152. data/doc/Sol/TimeScale.html +397 -0
  153. data/doc/StatList.html +110 -125
  154. data/doc/StringMDArray.html +10 -10
  155. data/doc/StructureMDArray.html +10 -10
  156. data/doc/UnaryOperator.html +20 -21
  157. data/doc/UserFunction.html +51 -49
  158. data/doc/_index.html +881 -106
  159. data/doc/class_list.html +8 -3
  160. data/doc/css/style.css +2 -1
  161. data/doc/file.README.html +455 -104
  162. data/doc/file_list.html +7 -2
  163. data/doc/frames.html +5 -7
  164. data/doc/index.html +455 -104
  165. data/doc/js/app.js +7 -2
  166. data/doc/js/full_list.js +11 -3
  167. data/doc/method_list.html +3170 -1233
  168. data/doc/top-level-namespace.html +31 -8
  169. data/lib/colt/matrix/algebra.rb +5 -5
  170. data/lib/mdarray.rb +6 -3
  171. data/lib/mdarray/csv.rb +25 -5
  172. data/lib/mdarray/fast_operators.rb +1 -1
  173. data/lib/mdarray/function_creation.rb +3 -1
  174. data/lib/mdarray/hierarchy.rb +2 -0
  175. data/lib/mdarray/operators.rb +1 -1
  176. data/lib/mdarray/ruby_functions.rb +8 -4
  177. data/lib/mdarray/ruby_math.rb +0 -28
  178. data/test/colt/matrix/test_matrix2d_floatingalgebra.rb +31 -7
  179. data/test/complete.rb +4 -4
  180. data/test/mdarray/PETR4_2014.csv +249 -0
  181. data/test/mdarray/VALE_2014.csv +253 -0
  182. data/test/mdarray/VALE_PETR4.csv +501 -0
  183. data/test/mdarray/arithmetic_casting.rb +1 -0
  184. data/test/mdarray/test_access.rb +1 -0
  185. data/test/mdarray/test_boolean.rb +1 -0
  186. data/test/mdarray/test_comparison.rb +1 -0
  187. data/test/mdarray/test_complete.rb +2 -5
  188. data/test/mdarray/test_counter.rb +1 -0
  189. data/test/mdarray/test_creation.rb +1 -0
  190. data/test/mdarray/test_csv.rb +51 -0
  191. data/test/mdarray/test_error.rb +1 -0
  192. data/test/mdarray/test_non_numeric.rb +1 -1
  193. data/test/mdarray/test_operator.rb +31 -14
  194. data/test/mdarray/test_performance.rb +2 -1
  195. data/test/mdarray/test_printing.rb +1 -0
  196. data/test/mdarray/test_sections.rb +1 -0
  197. data/test/mdarray/test_shape.rb +1 -0
  198. data/test/mdarray/test_trigonometry.rb +1 -0
  199. data/test/mdarray/test_views.rb +1 -0
  200. data/vendor/mdarray.jar +0 -0
  201. data/vendor/{netcdfAll-4.5_0.jar → netcdfAll-4.6.jar} +0 -0
  202. data/vendor/slf4j-jdk14-1.7.12.jar +0 -0
  203. data/version.rb +1 -1
  204. metadata +247 -139
  205. data/lib/env.rb +0 -12
  206. data/lib/mdarray/lazy_mdarray.rb +0 -315
  207. data/lib/mdarray/lazy_operators.rb +0 -174
  208. data/test/env.rb +0 -8
  209. data/test/mdarray/test_lazy.rb +0 -306
@@ -24,6 +24,7 @@ require 'rubygems'
24
24
  require "test/unit"
25
25
  require 'shoulda'
26
26
 
27
+ require '../../config' if @platform == nil
27
28
  require 'mdarray'
28
29
 
29
30
  class MDArrayTest < Test::Unit::TestCase
@@ -24,6 +24,7 @@ require 'rubygems'
24
24
  require "test/unit"
25
25
  require 'shoulda'
26
26
 
27
+ require '../../config' if @platform == nil
27
28
  require 'mdarray'
28
29
 
29
30
  class MDArrayTest < Test::Unit::TestCase
@@ -2,6 +2,7 @@ require 'rubygems'
2
2
  require "test/unit"
3
3
  require 'shoulda'
4
4
 
5
+ require '../../config' if @platform == nil
5
6
  require 'mdarray'
6
7
 
7
8
  class MDArrayTest < Test::Unit::TestCase
@@ -23,6 +23,7 @@ require 'rubygems'
23
23
  require "test/unit"
24
24
  require 'shoulda'
25
25
 
26
+ require '../../config' if @platform == nil
26
27
  require 'mdarray'
27
28
 
28
29
  class MDArrayTest < Test::Unit::TestCase
@@ -19,10 +19,7 @@
19
19
  # OR MODIFICATIONS.
20
20
  ##########################################################################################
21
21
 
22
- if !(defined? $ENVIR)
23
- $ENVIR = true
24
- require_relative '../env.rb'
25
- end
22
+ require '../../config' if @platform == nil
26
23
 
27
24
  # MDArray main object is the homogeneous multidimensional array. It is a table
28
25
  # of elements (usually numbers), all of the same type, indexed by a tuple of
@@ -63,7 +60,7 @@ require_relative 'test_counter'
63
60
  require_relative 'test_trigonometry'
64
61
  require_relative 'test_views'
65
62
  require_relative 'test_printing'
66
- require_relative 'test_lazy'
63
+ #require_relative 'test_lazy'
67
64
  require_relative 'test_sections'
68
65
  #require_relative 'test_performance'
69
66
  #=end
@@ -23,6 +23,7 @@ require 'rubygems'
23
23
  require "test/unit"
24
24
  require 'shoulda'
25
25
 
26
+ require '../../config' if @platform == nil
26
27
  require 'mdarray'
27
28
 
28
29
  class MDArrayTest < Test::Unit::TestCase
@@ -23,6 +23,7 @@ require 'rubygems'
23
23
  require "test/unit"
24
24
  require 'shoulda'
25
25
 
26
+ require '../../config' if @platform == nil
26
27
  require 'mdarray'
27
28
 
28
29
 
@@ -0,0 +1,51 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ ##########################################################################################
4
+ # Copyright © 2013 Rodrigo Botafogo. All Rights Reserved. Permission to use, copy, modify,
5
+ # and distribute this software and its documentation for educational, research, and
6
+ # not-for-profit purposes, without fee and without a signed licensing agreement, is hereby
7
+ # granted, provided that the above copyright notice, this paragraph and the following two
8
+ # paragraphs appear in all copies, modifications, and distributions. Contact Rodrigo
9
+ # Botafogo - rodrigo.a.botafogo@gmail.com for commercial licensing opportunities.
10
+ #
11
+ # IN NO EVENT SHALL RODRIGO BOTAFOGO BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
12
+ # INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF
13
+ # THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF RODRIGO BOTAFOGO HAS BEEN ADVISED OF THE
14
+ # POSSIBILITY OF SUCH DAMAGE.
15
+ #
16
+ # RODRIGO BOTAFOGO SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
17
+ # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
18
+ # SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED HEREUNDER IS PROVIDED "AS IS".
19
+ # RODRIGO BOTAFOGO HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS,
20
+ # OR MODIFICATIONS.
21
+ ##########################################################################################
22
+
23
+ require 'rubygems'
24
+ require "test/unit"
25
+ require 'shoulda'
26
+
27
+ require '../../config' if @platform == nil
28
+ require 'mdarray'
29
+
30
+ class MDArrayTest < Test::Unit::TestCase
31
+
32
+ context "CSV Tests" do
33
+
34
+ setup do
35
+
36
+ end
37
+
38
+ #-------------------------------------------------------------------------------------
39
+ #
40
+ #-------------------------------------------------------------------------------------
41
+
42
+ should "Read CSV Data" do
43
+ # res = Csv.read_numeric("VALE_2014.csv")
44
+ res = Csv.read_file("VALE_2014.csv", col_sep: ";", dimensions:["Symbol"])
45
+ # arr = MDArray.double([res[0], res[1]-1], res[2])
46
+ # arr.print
47
+ end
48
+
49
+ end
50
+
51
+ end
@@ -2,6 +2,7 @@ require 'rubygems'
2
2
  require "test/unit"
3
3
  require 'shoulda'
4
4
 
5
+ require '../../config' if @platform == nil
5
6
  require 'mdarray'
6
7
 
7
8
  class MDArrayTest < Test::Unit::TestCase
@@ -23,7 +23,7 @@ require 'rubygems'
23
23
  require "test/unit"
24
24
  require 'shoulda'
25
25
 
26
- require_relative '../env'
26
+ require '../../config' if @platform == nil
27
27
  require 'mdarray'
28
28
 
29
29
  class MDArrayTest < Test::Unit::TestCase
@@ -19,16 +19,13 @@
19
19
  # OR MODIFICATIONS.
20
20
  ##########################################################################################
21
21
 
22
- if !(defined? $ENVIR)
23
- $ENVIR = true
24
- require_relative '../env.rb'
25
- end
26
-
27
22
  require 'rubygems'
28
23
  require "test/unit"
29
24
  require 'shoulda'
30
25
 
26
+ require '../../config' if @platform == nil
31
27
  require 'mdarray'
28
+ # require 'pry'
32
29
 
33
30
  class MDArrayTest < Test::Unit::TestCase
34
31
 
@@ -64,7 +61,7 @@ class MDArrayTest < Test::Unit::TestCase
64
61
  #-------------------------------------------------------------------------------------
65
62
  #
66
63
  #-------------------------------------------------------------------------------------
67
-
64
+ =begin
68
65
  should "work properly with nil" do
69
66
 
70
67
  a = MDArray.int([5, 3, 5])
@@ -202,13 +199,14 @@ class MDArrayTest < Test::Unit::TestCase
202
199
  assert_equal("-41.14 -138.88 -217.56 -303.68 ", result.to_string)
203
200
 
204
201
  end
205
-
202
+ =end
206
203
  #-------------------------------------------------------------------------------------
207
204
  #
208
205
  #-------------------------------------------------------------------------------------
209
206
 
210
207
  should "do bitwise operations" do
211
208
 
209
+ =begin
212
210
  result = @g & @h
213
211
  assert_equal("12 ", result.to_string)
214
212
  result = @g | @h
@@ -221,13 +219,32 @@ class MDArrayTest < Test::Unit::TestCase
221
219
  assert_equal("240 ", result.to_string)
222
220
  result = @g >> 2
223
221
  assert_equal("15 ", result.to_string)
224
-
225
222
  result = @g & 13
226
- # although we can coerce arithmetic operations we cannot coerce bitwise operations
227
- assert_raise ( TypeError ) { result = 13 & @g }
223
+ assert_equal("12 ", result.to_string)
224
+ =end
228
225
 
229
- end
226
+ result = @d & 10
227
+ result = 10 & @d
228
+ result.print
229
+
230
+ tt = MDArray.byte([2], [60, 70])
231
+ result = tt & 7
232
+ result.print
230
233
 
234
+ # binding.pry
235
+
236
+ p "coercing 13"
237
+ result = (13 & @g)
238
+ p result
239
+ # assert_equal("12 ", result.to_string)
240
+
241
+ p "coercing 7"
242
+ result = 7 & tt
243
+ p result
244
+ # result.print
245
+
246
+ end
247
+ =begin
231
248
  #-------------------------------------------------------------------------------------
232
249
  #
233
250
  #-------------------------------------------------------------------------------------
@@ -371,9 +388,9 @@ class MDArrayTest < Test::Unit::TestCase
371
388
 
372
389
  end
373
390
 
374
- #=end
391
+ =end
375
392
 
376
393
  end
377
-
378
-
394
+
395
+
379
396
  end
@@ -2,8 +2,9 @@ require 'rubygems'
2
2
  require "test/unit"
3
3
  require 'shoulda'
4
4
  require 'jruby/profiler'
5
-
6
5
  require 'benchmark'
6
+
7
+ require '../../config' if @platform == nil
7
8
  require 'mdarray'
8
9
 
9
10
  class MDArrayTest < Test::Unit::TestCase
@@ -2,6 +2,7 @@ require 'rubygems'
2
2
  require "test/unit"
3
3
  require 'shoulda'
4
4
 
5
+ require '../../config' if @platform == nil
5
6
  require 'mdarray'
6
7
 
7
8
  class MDArrayTest < Test::Unit::TestCase
@@ -23,6 +23,7 @@ require 'rubygems'
23
23
  require "test/unit"
24
24
  require 'shoulda'
25
25
 
26
+ require '../../config' if @platform == nil
26
27
  require 'mdarray'
27
28
 
28
29
  class MDArrayTest < Test::Unit::TestCase
@@ -23,6 +23,7 @@ require 'rubygems'
23
23
  require "test/unit"
24
24
  require 'shoulda'
25
25
 
26
+ require '../../config' if @platform == nil
26
27
  require 'mdarray'
27
28
 
28
29
  class MDArrayTest < Test::Unit::TestCase
@@ -23,6 +23,7 @@ require 'rubygems'
23
23
  require "test/unit"
24
24
  require 'shoulda'
25
25
 
26
+ require '../../config' if @platform == nil
26
27
  require 'mdarray'
27
28
 
28
29
  class MDArrayTest < Test::Unit::TestCase
@@ -23,6 +23,7 @@ require 'rubygems'
23
23
  require "test/unit"
24
24
  require 'shoulda'
25
25
 
26
+ require '../../config' if @platform == nil
26
27
  require 'mdarray'
27
28
 
28
29
  class MDArrayTest < Test::Unit::TestCase
Binary file
data/version.rb CHANGED
@@ -1,2 +1,2 @@
1
1
  $gem_name = "mdarray"
2
- $version="0.5.5.2"
2
+ $version="0.5.6"
metadata CHANGED
@@ -1,85 +1,85 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mdarray
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5.2
4
+ version: 0.5.6
5
5
  platform: java
6
6
  authors:
7
7
  - Rodrigo Botafogo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-23 00:00:00.000000000 Z
11
+ date: 2016-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: map
15
- version_requirements: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - '>='
18
- - !ruby/object:Gem::Version
19
- version: 6.3.0
20
14
  requirement: !ruby/object:Gem::Requirement
21
15
  requirements:
22
- - - '>='
16
+ - - "~>"
23
17
  - !ruby/object:Gem::Version
24
- version: 6.3.0
18
+ version: '6.5'
19
+ name: map
25
20
  prerelease: false
26
21
  type: :runtime
27
- - !ruby/object:Gem::Dependency
28
- name: shoulda
29
22
  version_requirements: !ruby/object:Gem::Requirement
30
23
  requirements:
31
- - - '>='
24
+ - - "~>"
32
25
  - !ruby/object:Gem::Version
33
- version: '0'
26
+ version: '6.5'
27
+ - !ruby/object:Gem::Dependency
34
28
  requirement: !ruby/object:Gem::Requirement
35
29
  requirements:
36
- - - '>='
30
+ - - "~>"
37
31
  - !ruby/object:Gem::Version
38
- version: '0'
32
+ version: '3.5'
33
+ name: shoulda
39
34
  prerelease: false
40
- type: :runtime
41
- - !ruby/object:Gem::Dependency
42
- name: simplecov
35
+ type: :development
43
36
  version_requirements: !ruby/object:Gem::Requirement
44
37
  requirements:
45
- - - '>='
38
+ - - "~>"
46
39
  - !ruby/object:Gem::Version
47
- version: 0.7.1
40
+ version: '3.5'
41
+ - !ruby/object:Gem::Dependency
48
42
  requirement: !ruby/object:Gem::Requirement
49
43
  requirements:
50
- - - '>='
44
+ - - "~>"
51
45
  - !ruby/object:Gem::Version
52
- version: 0.7.1
46
+ version: '0.11'
47
+ name: simplecov
53
48
  prerelease: false
54
49
  type: :development
55
- - !ruby/object:Gem::Dependency
56
- name: yard
57
50
  version_requirements: !ruby/object:Gem::Requirement
58
51
  requirements:
59
- - - '>='
52
+ - - "~>"
60
53
  - !ruby/object:Gem::Version
61
- version: 0.8.5.2
54
+ version: '0.11'
55
+ - !ruby/object:Gem::Dependency
62
56
  requirement: !ruby/object:Gem::Requirement
63
57
  requirements:
64
- - - '>='
58
+ - - "~>"
65
59
  - !ruby/object:Gem::Version
66
- version: 0.8.5.2
60
+ version: '0.8'
61
+ name: yard
67
62
  prerelease: false
68
63
  type: :development
69
- - !ruby/object:Gem::Dependency
70
- name: kramdown
71
64
  version_requirements: !ruby/object:Gem::Requirement
72
65
  requirements:
73
- - - '>='
66
+ - - "~>"
74
67
  - !ruby/object:Gem::Version
75
- version: 1.0.1
68
+ version: '0.8'
69
+ - !ruby/object:Gem::Dependency
76
70
  requirement: !ruby/object:Gem::Requirement
77
71
  requirements:
78
- - - '>='
72
+ - - "~>"
79
73
  - !ruby/object:Gem::Version
80
- version: 1.0.1
74
+ version: '1.0'
75
+ name: kramdown
81
76
  prerelease: false
82
77
  type: :development
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.0'
83
83
  description: "\"MDArray is a multi dimensional array implemented for JRuby inspired\
84
84
  \ by NumPy (www.numpy.org) and \nMasahiro Tanaka´s Narray (narray.rubyforge.org).\
85
85
  \ MDArray stands on the shoulders of Java-NetCDF \nand Parallel Colt. At this\
@@ -99,31 +99,208 @@ executables: []
99
99
  extensions: []
100
100
  extra_rdoc_files: []
101
101
  files:
102
+ - LICENSE.txt
103
+ - LICENSE.txt~
104
+ - README.md
102
105
  - Rakefile
103
- - version.rb
104
106
  - config.rb
105
- - lib/env.rb
106
- - lib/mdarray.rb
107
- - lib/colt/colt_mdarray.rb
108
- - lib/colt/double_descriptive.rb
109
- - lib/colt/probability.rb
110
- - lib/colt/stat_list.rb
107
+ - doc/20130625 MDArray Internals.docx
108
+ - doc/BinaryOperator.html
109
+ - doc/BitwiseOperators.html
110
+ - doc/BitwiseOperators/BinaryAnd.html
111
+ - doc/BitwiseOperators/BinaryLeftShift.html
112
+ - doc/BitwiseOperators/BinaryOnesComplement.html
113
+ - doc/BitwiseOperators/BinaryOr.html
114
+ - doc/BitwiseOperators/BinaryRightShift.html
115
+ - doc/BitwiseOperators/BinaryXor.html
116
+ - doc/BooleanFunctions.html
117
+ - doc/BooleanFunctions/And.html
118
+ - doc/BooleanFunctions/Not.html
119
+ - doc/BooleanFunctions/Or.html
120
+ - doc/BooleanMDArray.html
121
+ - doc/ByteMDArray.html
122
+ - doc/CernDoubleFunctions.html
123
+ - doc/CernFloatFunctions.html
124
+ - doc/CernFunctions.html
125
+ - doc/CernIntFunctions.html
126
+ - doc/CernLongFunctions.html
127
+ - doc/CharMDArray.html
128
+ - doc/Colt.html
129
+ - doc/ComparisonOperators.html
130
+ - doc/ComparisonOperators/Eq.html
131
+ - doc/ComparisonOperators/Ge.html
132
+ - doc/ComparisonOperators/Gt.html
133
+ - doc/ComparisonOperators/Le.html
134
+ - doc/ComparisonOperators/Lt.html
135
+ - doc/Const.html
136
+ - doc/Csv.html
137
+ - doc/Csv/Dimension.html
138
+ - doc/Csv/Dimensions.html
139
+ - doc/DDescriptive.html
140
+ - doc/DoubleMDArray.html
141
+ - doc/DoubleStatList.html
142
+ - doc/FastBinaryOperator.html
143
+ - doc/FastBoolean.html
144
+ - doc/FastUnaryOperator.html
145
+ - doc/FloatMDArray.html
146
+ - doc/FunctionCreation.html
147
+ - doc/FunctionMap.html
148
+ - doc/GenericFunctions.html
149
+ - doc/GenericFunctions/Null.html
150
+ - doc/IntMDArray.html
151
+ - doc/Java/CernJetMathTdouble/DoubleFunctions.html
152
+ - doc/Java/CernJetMathTfloat/FloatFunctions.html
153
+ - doc/Java/CernJetMathTint/IntFunctions.html
154
+ - doc/Java/CernJetMathTlong/LongFunctions.html
155
+ - doc/LazyBinaryOperator.html
156
+ - doc/LazyMDArray.html
157
+ - doc/LazyMDArray/BinaryComp.html
158
+ - doc/LazyMDArray/UnaryComp.html
159
+ - doc/LazyUnaryOperator.html
160
+ - doc/LongMDArray.html
161
+ - doc/MDArray.html
162
+ - doc/MDArray/Counter.html
163
+ - doc/MDArray/IteratorFast.html
164
+ - doc/MDArray/IteratorFastBoolean.html
165
+ - doc/MDArray/IteratorFastByte.html
166
+ - doc/MDArray/IteratorFastChar.html
167
+ - doc/MDArray/IteratorFastDouble.html
168
+ - doc/MDArray/IteratorFastFloat.html
169
+ - doc/MDArray/IteratorFastInt.html
170
+ - doc/MDArray/IteratorFastLong.html
171
+ - doc/MDArray/IteratorFastShort.html
172
+ - doc/MDArray/Section.html
173
+ - doc/MDArrayTest.html
174
+ - doc/Nashorn.html
175
+ - doc/NetCDF.html
176
+ - doc/NetCDF/Attribute.html
177
+ - doc/NetCDF/AttributeWriter.html
178
+ - doc/NetCDF/CDMNode.html
179
+ - doc/NetCDF/Dimension.html
180
+ - doc/NetCDF/DimensionWriter.html
181
+ - doc/NetCDF/File.html
182
+ - doc/NetCDF/FileParent.html
183
+ - doc/NetCDF/FileWriter.html
184
+ - doc/NetCDF/Group.html
185
+ - doc/NetCDF/GroupWriter.html
186
+ - doc/NetCDF/TimeVariable.html
187
+ - doc/NetCDF/Variable.html
188
+ - doc/NetCDF/VariableWriter.html
189
+ - doc/NonNumericalMDArray.html
190
+ - doc/NumericFunctions.html
191
+ - doc/NumericFunctions/Abs.html
192
+ - doc/NumericFunctions/Add.html
193
+ - doc/NumericFunctions/Ceil.html
194
+ - doc/NumericFunctions/Cube.html
195
+ - doc/NumericFunctions/Div.html
196
+ - doc/NumericFunctions/Floor.html
197
+ - doc/NumericFunctions/Fourth.html
198
+ - doc/NumericFunctions/IsZero.html
199
+ - doc/NumericFunctions/Max.html
200
+ - doc/NumericFunctions/Min.html
201
+ - doc/NumericFunctions/Mul.html
202
+ - doc/NumericFunctions/Power.html
203
+ - doc/NumericFunctions/Square.html
204
+ - doc/NumericFunctions/Sub.html
205
+ - doc/NumericFunctions/Truncate.html
206
+ - doc/NumericalMDArray.html
207
+ - doc/Operator.html
208
+ - doc/Proc.html
209
+ - doc/RubyBinaryOperator.html
210
+ - doc/RubyFunctions.html
211
+ - doc/RubyMath.html
212
+ - doc/RubyMath/Acos.html
213
+ - doc/RubyMath/Acosh.html
214
+ - doc/RubyMath/Asin.html
215
+ - doc/RubyMath/Asinh.html
216
+ - doc/RubyMath/Atan.html
217
+ - doc/RubyMath/Atan2.html
218
+ - doc/RubyMath/Atanh.html
219
+ - doc/RubyMath/Cbrt.html
220
+ - doc/RubyMath/Cos.html
221
+ - doc/RubyMath/Cosh.html
222
+ - doc/RubyMath/Erf.html
223
+ - doc/RubyMath/Erfc.html
224
+ - doc/RubyMath/Exp.html
225
+ - doc/RubyMath/Gamma.html
226
+ - doc/RubyMath/Hypot.html
227
+ - doc/RubyMath/Ldexp.html
228
+ - doc/RubyMath/Log.html
229
+ - doc/RubyMath/Log10.html
230
+ - doc/RubyMath/Log2.html
231
+ - doc/RubyMath/Neg.html
232
+ - doc/RubyMath/Sin.html
233
+ - doc/RubyMath/Sinh.html
234
+ - doc/RubyMath/Sqrt.html
235
+ - doc/RubyMath/Tan.html
236
+ - doc/RubyMath/Tanh.html
237
+ - doc/RubyStats.html
238
+ - doc/RubyUnaryOperator.html
239
+ - doc/ShortMDArray.html
240
+ - doc/Sol.html
241
+ - doc/Sol/BarChart.html
242
+ - doc/Sol/BaseChart.html
243
+ - doc/Sol/Bootstrap.html
244
+ - doc/Sol/Bridge.html
245
+ - doc/Sol/Chart.html
246
+ - doc/Sol/CoordinateChart.html
247
+ - doc/Sol/Dashboard.html
248
+ - doc/Sol/Dashboard/DCFX.html
249
+ - doc/Sol/Dashboard/MyHandle.html
250
+ - doc/Sol/Dashboard/MyService.html
251
+ - doc/Sol/Dashboard/MyTask.html
252
+ - doc/Sol/Interval.html
253
+ - doc/Sol/LineChart.html
254
+ - doc/Sol/LinearScale.html
255
+ - doc/Sol/Margins.html
256
+ - doc/Sol/OrdinalScale.html
257
+ - doc/Sol/Scale.html
258
+ - doc/Sol/Stack.html
259
+ - doc/Sol/TimeScale.html
260
+ - doc/StatList.html
261
+ - doc/StringMDArray.html
262
+ - doc/StructureMDArray.html
263
+ - doc/UnaryOperator.html
264
+ - doc/UserFunction.html
265
+ - doc/_index.html
266
+ - doc/class_list.html
267
+ - doc/css/common.css
268
+ - doc/css/full_list.css
269
+ - doc/css/style.css
270
+ - doc/file.README.html
271
+ - doc/file_list.html
272
+ - doc/frames.html
273
+ - doc/index.html
274
+ - doc/js/app.js
275
+ - doc/js/full_list.js
276
+ - doc/js/jquery.js
277
+ - doc/method_list.html
278
+ - doc/top-level-namespace.html
111
279
  - lib/colt/cern_double_functions.rb
112
280
  - lib/colt/cern_float_functions.rb
113
281
  - lib/colt/cern_int_functions.rb
114
282
  - lib/colt/cern_long_functions.rb
115
283
  - lib/colt/colt.rb
284
+ - lib/colt/colt_mdarray.rb
285
+ - lib/colt/double_descriptive.rb
116
286
  - lib/colt/matrix/algebra.rb
117
287
  - lib/colt/matrix/colt_matrix.rb
118
288
  - lib/colt/matrix/creation.rb
119
289
  - lib/colt/matrix/hierarchy.rb
120
290
  - lib/colt/matrix/property.rb
291
+ - lib/colt/probability.rb
292
+ - lib/colt/stat_list.rb
293
+ - lib/mdarray.rb
121
294
  - lib/mdarray/access.rb
295
+ - lib/mdarray/counter.rb
296
+ - lib/mdarray/creation.rb
122
297
  - lib/mdarray/csv.rb
123
298
  - lib/mdarray/fast_operators.rb
299
+ - lib/mdarray/function_creation.rb
124
300
  - lib/mdarray/function_map.rb
125
301
  - lib/mdarray/hierarchy.rb
126
- - lib/mdarray/lazy_operators.rb
302
+ - lib/mdarray/operators.rb
303
+ - lib/mdarray/printing.rb
127
304
  - lib/mdarray/proc_util.rb
128
305
  - lib/mdarray/ruby_boolean_functions.rb
129
306
  - lib/mdarray/ruby_functions.rb
@@ -134,12 +311,6 @@ files:
134
311
  - lib/mdarray/ruby_stats.rb
135
312
  - lib/mdarray/section.rb
136
313
  - lib/mdarray/views.rb
137
- - lib/mdarray/counter.rb
138
- - lib/mdarray/creation.rb
139
- - lib/mdarray/function_creation.rb
140
- - lib/mdarray/lazy_mdarray.rb
141
- - lib/mdarray/operators.rb
142
- - lib/mdarray/printing.rb
143
314
  - lib/netcdf/attribute.rb
144
315
  - lib/netcdf/cdm_node.rb
145
316
  - lib/netcdf/dimension.rb
@@ -148,26 +319,38 @@ files:
148
319
  - lib/netcdf/group.rb
149
320
  - lib/netcdf/netcdf.rb
150
321
  - lib/netcdf/variable.rb
151
- - test/complete.rb
152
- - test/env.rb
153
- - test/colt/test_complete.rb
154
- - test/colt/test_math.rb
155
- - test/colt/test_statistics.rb
156
- - test/colt/test_stat_list.rb
322
+ - target/helper.jar
323
+ - test/colt/ColtMethods.xlsx
324
+ - test/colt/VALE3.csv
325
+ - test/colt/VALE3.xlsx
326
+ - test/colt/VALE3_short-err.csv
327
+ - test/colt/VALE3_short.csv
328
+ - test/colt/VALE3_short.xlsx
157
329
  - test/colt/matrix/test_complete.rb
158
330
  - test/colt/matrix/test_creation.rb
159
331
  - test/colt/matrix/test_matrix1d_floatingalgebra.rb
160
332
  - test/colt/matrix/test_matrix2d_fixpointalgebra.rb
333
+ - test/colt/matrix/test_matrix2d_floatingalgebra.rb
161
334
  - test/colt/matrix/test_operations.rb
162
335
  - test/colt/matrix/test_properties.rb
163
- - test/colt/matrix/test_matrix2d_floatingalgebra.rb
336
+ - test/colt/test_complete.rb
337
+ - test/colt/test_math.rb
338
+ - test/colt/test_stat_list.rb
339
+ - test/colt/test_statistics.rb
340
+ - test/colt/~$VALE3_short.xlsx
341
+ - test/complete.rb
342
+ - test/mdarray/PETR4_2014.csv
343
+ - test/mdarray/VALE_2014.csv
344
+ - test/mdarray/VALE_PETR4.csv
345
+ - test/mdarray/arithmetic_casting.rb
164
346
  - test/mdarray/test_access.rb
165
347
  - test/mdarray/test_boolean.rb
166
348
  - test/mdarray/test_comparison.rb
167
349
  - test/mdarray/test_complete.rb
168
350
  - test/mdarray/test_counter.rb
351
+ - test/mdarray/test_creation.rb
352
+ - test/mdarray/test_csv.rb
169
353
  - test/mdarray/test_error.rb
170
- - test/mdarray/test_lazy.rb
171
354
  - test/mdarray/test_non_numeric.rb
172
355
  - test/mdarray/test_operator.rb
173
356
  - test/mdarray/test_performance.rb
@@ -176,89 +359,14 @@ files:
176
359
  - test/mdarray/test_shape.rb
177
360
  - test/mdarray/test_trigonometry.rb
178
361
  - test/mdarray/test_views.rb
179
- - test/mdarray/arithmetic_casting.rb
180
- - test/mdarray/test_creation.rb
181
362
  - test/netcdf/netcdfwriter.rb
182
363
  - test/netcdf/test_complete.rb
183
364
  - test/netcdf/test_netcdf.rb
184
365
  - test/netcdf/test_redefine.rb
185
- - test/colt/VALE3.csv
186
- - test/colt/VALE3_short-err.csv
187
- - test/colt/VALE3_short.csv
188
- - test/colt/ColtMethods.xlsx
189
- - test/colt/VALE3.xlsx
190
- - test/colt/VALE3_short.xlsx
191
- - test/colt/~$VALE3_short.xlsx
192
- - doc/20130625 MDArray Internals.docx
193
- - doc/BinaryOperator.html
194
- - doc/BitwiseOperators.html
195
- - doc/BooleanFunctions.html
196
- - doc/BooleanMDArray.html
197
- - doc/ByteMDArray.html
198
- - doc/class_list.html
199
- - doc/Colt.html
200
- - doc/ComparisonOperators.html
201
- - doc/Const.html
202
- - doc/Csv.html
203
- - doc/DDescriptive.html
204
- - doc/DoubleMDArray.html
205
- - doc/DoubleStatList.html
206
- - doc/FastBinaryOperator.html
207
- - doc/FastBoolean.html
208
- - doc/FastUnaryOperator.html
209
- - doc/file.README.html
210
- - doc/file_list.html
211
- - doc/FloatMDArray.html
212
- - doc/frames.html
213
- - doc/FunctionCreation.html
214
- - doc/FunctionMap.html
215
- - doc/GenericFunctions.html
216
- - doc/index.html
217
- - doc/IntMDArray.html
218
- - doc/LongMDArray.html
219
- - doc/MDArray.html
220
- - doc/MDArrayTest.html
221
- - doc/method_list.html
222
- - doc/NonNumericalMDArray.html
223
- - doc/NumericalMDArray.html
224
- - doc/NumericFunctions.html
225
- - doc/Operator.html
226
- - doc/Proc.html
227
- - doc/RubyBinaryOperator.html
228
- - doc/RubyFunctions.html
229
- - doc/RubyMath.html
230
- - doc/RubyStats.html
231
- - doc/RubyUnaryOperator.html
232
- - doc/ShortMDArray.html
233
- - doc/StatList.html
234
- - doc/StringMDArray.html
235
- - doc/StructureMDArray.html
236
- - doc/top-level-namespace.html
237
- - doc/UnaryOperator.html
238
- - doc/UserFunction.html
239
- - doc/_index.html
240
- - doc/css/common.css
241
- - doc/css/full_list.css
242
- - doc/css/style.css
243
- - doc/js/app.js
244
- - doc/js/full_list.js
245
- - doc/js/jquery.js
246
- - doc/MDArray/Counter.html
247
- - doc/MDArray/IteratorFast.html
248
- - doc/MDArray/IteratorFastBoolean.html
249
- - doc/MDArray/IteratorFastByte.html
250
- - doc/MDArray/IteratorFastChar.html
251
- - doc/MDArray/IteratorFastDouble.html
252
- - doc/MDArray/IteratorFastFloat.html
253
- - doc/MDArray/IteratorFastInt.html
254
- - doc/MDArray/IteratorFastLong.html
255
- - doc/MDArray/IteratorFastShort.html
256
366
  - vendor/mdarray.jar
257
- - vendor/netcdfAll-4.5_0.jar
258
- - target/helper.jar
259
- - README.md
260
- - LICENSE.txt
261
- - LICENSE.txt~
367
+ - vendor/netcdfAll-4.6.jar
368
+ - vendor/slf4j-jdk14-1.7.12.jar
369
+ - version.rb
262
370
  homepage: http://github.com/rbotafogo/mdarray/wiki
263
371
  licenses:
264
372
  - BSD 2-clause
@@ -269,20 +377,20 @@ require_paths:
269
377
  - lib
270
378
  required_ruby_version: !ruby/object:Gem::Requirement
271
379
  requirements:
272
- - - '>='
380
+ - - ">="
273
381
  - !ruby/object:Gem::Version
274
382
  version: '0'
275
383
  required_rubygems_version: !ruby/object:Gem::Requirement
276
384
  requirements:
277
- - - '>='
385
+ - - ">="
278
386
  - !ruby/object:Gem::Version
279
387
  version: '0'
280
388
  requirements: []
281
389
  rubyforge_project:
282
- rubygems_version: 2.1.9
390
+ rubygems_version: 2.4.8
283
391
  signing_key:
284
392
  specification_version: 4
285
393
  summary: Multi dimensional array similar to narray and numpy.
286
394
  test_files:
287
395
  - test/complete.rb
288
- - test/env.rb
396
+ has_rdoc: