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.
- checksums.yaml +4 -4
- data/config.rb +29 -95
- data/doc/BinaryOperator.html +20 -21
- data/doc/BitwiseOperators.html +18 -8
- data/doc/BitwiseOperators/BinaryAnd.html +189 -0
- data/doc/BitwiseOperators/BinaryLeftShift.html +189 -0
- data/doc/BitwiseOperators/BinaryOnesComplement.html +189 -0
- data/doc/BitwiseOperators/BinaryOr.html +189 -0
- data/doc/BitwiseOperators/BinaryRightShift.html +189 -0
- data/doc/BitwiseOperators/BinaryXor.html +189 -0
- data/doc/BooleanFunctions.html +18 -8
- data/doc/BooleanFunctions/And.html +189 -0
- data/doc/BooleanFunctions/Not.html +189 -0
- data/doc/BooleanFunctions/Or.html +189 -0
- data/doc/BooleanMDArray.html +10 -10
- data/doc/ByteMDArray.html +73 -14
- data/doc/CernDoubleFunctions.html +208 -0
- data/doc/CernFloatFunctions.html +208 -0
- data/doc/CernFunctions.html +828 -0
- data/doc/CernIntFunctions.html +208 -0
- data/doc/CernLongFunctions.html +208 -0
- data/doc/CharMDArray.html +181 -0
- data/doc/Colt.html +18 -20
- data/doc/ComparisonOperators.html +18 -8
- data/doc/ComparisonOperators/Eq.html +189 -0
- data/doc/ComparisonOperators/Ge.html +189 -0
- data/doc/ComparisonOperators/Gt.html +189 -0
- data/doc/ComparisonOperators/Le.html +189 -0
- data/doc/ComparisonOperators/Lt.html +189 -0
- data/doc/Const.html +107 -47
- data/doc/Csv.html +325 -113
- data/doc/Csv/Dimension.html +771 -0
- data/doc/Csv/Dimensions.html +654 -0
- data/doc/DDescriptive.html +573 -625
- data/doc/DoubleMDArray.html +40 -172
- data/doc/DoubleStatList.html +19 -20
- data/doc/FastBinaryOperator.html +166 -148
- data/doc/FastUnaryOperator.html +104 -109
- data/doc/FloatMDArray.html +55 -16
- data/doc/FunctionCreation.html +53 -273
- data/doc/FunctionMap.html +381 -93
- data/doc/GenericFunctions.html +18 -8
- data/doc/GenericFunctions/Null.html +187 -0
- data/doc/IntMDArray.html +77 -16
- data/doc/Java/CernJetMathTdouble/DoubleFunctions.html +120 -0
- data/doc/Java/CernJetMathTfloat/FloatFunctions.html +120 -0
- data/doc/Java/CernJetMathTint/IntFunctions.html +120 -0
- data/doc/Java/CernJetMathTlong/LongFunctions.html +120 -0
- data/doc/LazyBinaryOperator.html +714 -0
- data/doc/LazyMDArray.html +990 -0
- data/doc/LazyMDArray/BinaryComp.html +282 -0
- data/doc/LazyMDArray/UnaryComp.html +280 -0
- data/doc/LazyUnaryOperator.html +537 -0
- data/doc/LongMDArray.html +59 -15
- data/doc/MDArray.html +3223 -2181
- data/doc/MDArray/Counter.html +321 -1233
- data/doc/MDArray/IteratorFast.html +177 -116
- data/doc/MDArray/IteratorFastBoolean.html +37 -41
- data/doc/MDArray/IteratorFastByte.html +46 -39
- data/doc/MDArray/IteratorFastChar.html +37 -41
- data/doc/MDArray/IteratorFastDouble.html +37 -41
- data/doc/MDArray/IteratorFastFloat.html +37 -41
- data/doc/MDArray/IteratorFastInt.html +37 -41
- data/doc/MDArray/IteratorFastLong.html +37 -41
- data/doc/MDArray/IteratorFastShort.html +37 -41
- data/doc/MDArray/Section.html +561 -0
- data/doc/Nashorn.html +1407 -0
- data/doc/NetCDF.html +749 -0
- data/doc/NetCDF/Attribute.html +875 -0
- data/doc/NetCDF/AttributeWriter.html +286 -0
- data/doc/NetCDF/CDMNode.html +460 -0
- data/doc/NetCDF/Dimension.html +559 -0
- data/doc/NetCDF/DimensionWriter.html +642 -0
- data/doc/NetCDF/File.html +1593 -0
- data/doc/NetCDF/FileParent.html +674 -0
- data/doc/NetCDF/FileWriter.html +2875 -0
- data/doc/NetCDF/Group.html +685 -0
- data/doc/NetCDF/GroupWriter.html +851 -0
- data/doc/NetCDF/TimeVariable.html +646 -0
- data/doc/NetCDF/Variable.html +2994 -0
- data/doc/NetCDF/VariableWriter.html +420 -0
- data/doc/NonNumericalMDArray.html +11 -11
- data/doc/NumericFunctions.html +38 -30
- data/doc/NumericFunctions/Abs.html +189 -0
- data/doc/NumericFunctions/Add.html +189 -0
- data/doc/NumericFunctions/Ceil.html +189 -0
- data/doc/NumericFunctions/Cube.html +189 -0
- data/doc/NumericFunctions/Div.html +189 -0
- data/doc/NumericFunctions/Floor.html +189 -0
- data/doc/NumericFunctions/Fourth.html +189 -0
- data/doc/NumericFunctions/IsZero.html +189 -0
- data/doc/NumericFunctions/Max.html +189 -0
- data/doc/NumericFunctions/Min.html +189 -0
- data/doc/NumericFunctions/Mul.html +189 -0
- data/doc/NumericFunctions/Power.html +189 -0
- data/doc/NumericFunctions/Square.html +189 -0
- data/doc/NumericFunctions/Sub.html +189 -0
- data/doc/NumericFunctions/Truncate.html +189 -0
- data/doc/NumericalMDArray.html +14 -15
- data/doc/Operator.html +318 -109
- data/doc/Proc.html +120 -129
- data/doc/RubyBinaryOperator.html +66 -70
- data/doc/RubyFunctions.html +572 -27
- data/doc/RubyMath.html +18 -8
- data/doc/RubyMath/Acos.html +189 -0
- data/doc/RubyMath/Acosh.html +189 -0
- data/doc/RubyMath/Asin.html +189 -0
- data/doc/RubyMath/Asinh.html +189 -0
- data/doc/RubyMath/Atan.html +189 -0
- data/doc/RubyMath/Atan2.html +189 -0
- data/doc/RubyMath/Atanh.html +189 -0
- data/doc/RubyMath/Cbrt.html +189 -0
- data/doc/RubyMath/Cos.html +189 -0
- data/doc/RubyMath/Cosh.html +189 -0
- data/doc/RubyMath/Erf.html +189 -0
- data/doc/RubyMath/Erfc.html +189 -0
- data/doc/RubyMath/Exp.html +189 -0
- data/doc/RubyMath/Gamma.html +189 -0
- data/doc/RubyMath/Hypot.html +189 -0
- data/doc/RubyMath/Ldexp.html +189 -0
- data/doc/RubyMath/Log.html +189 -0
- data/doc/RubyMath/Log10.html +189 -0
- data/doc/RubyMath/Log2.html +189 -0
- data/doc/RubyMath/Neg.html +189 -0
- data/doc/RubyMath/Sin.html +189 -0
- data/doc/RubyMath/Sinh.html +189 -0
- data/doc/RubyMath/Sqrt.html +189 -0
- data/doc/RubyMath/Tan.html +189 -0
- data/doc/RubyMath/Tanh.html +189 -0
- data/doc/RubyStats.html +8 -8
- data/doc/RubyUnaryOperator.html +61 -65
- data/doc/ShortMDArray.html +69 -14
- data/doc/Sol.html +700 -0
- data/doc/Sol/BarChart.html +181 -0
- data/doc/Sol/BaseChart.html +800 -0
- data/doc/Sol/Bootstrap.html +1137 -0
- data/doc/Sol/Bridge.html +586 -0
- data/doc/Sol/Chart.html +1162 -0
- data/doc/Sol/CoordinateChart.html +679 -0
- data/doc/Sol/Dashboard.html +2094 -0
- data/doc/Sol/Dashboard/DCFX.html +786 -0
- data/doc/Sol/Dashboard/MyHandle.html +338 -0
- data/doc/Sol/Dashboard/MyService.html +202 -0
- data/doc/Sol/Dashboard/MyTask.html +291 -0
- data/doc/Sol/Interval.html +1213 -0
- data/doc/Sol/LineChart.html +346 -0
- data/doc/Sol/LinearScale.html +334 -0
- data/doc/Sol/Margins.html +219 -0
- data/doc/Sol/OrdinalScale.html +263 -0
- data/doc/Sol/Scale.html +462 -0
- data/doc/Sol/Stack.html +199 -0
- data/doc/Sol/TimeScale.html +397 -0
- data/doc/StatList.html +110 -125
- data/doc/StringMDArray.html +10 -10
- data/doc/StructureMDArray.html +10 -10
- data/doc/UnaryOperator.html +20 -21
- data/doc/UserFunction.html +51 -49
- data/doc/_index.html +881 -106
- data/doc/class_list.html +8 -3
- data/doc/css/style.css +2 -1
- data/doc/file.README.html +455 -104
- data/doc/file_list.html +7 -2
- data/doc/frames.html +5 -7
- data/doc/index.html +455 -104
- data/doc/js/app.js +7 -2
- data/doc/js/full_list.js +11 -3
- data/doc/method_list.html +3170 -1233
- data/doc/top-level-namespace.html +31 -8
- data/lib/colt/matrix/algebra.rb +5 -5
- data/lib/mdarray.rb +6 -3
- data/lib/mdarray/csv.rb +25 -5
- data/lib/mdarray/fast_operators.rb +1 -1
- data/lib/mdarray/function_creation.rb +3 -1
- data/lib/mdarray/hierarchy.rb +2 -0
- data/lib/mdarray/operators.rb +1 -1
- data/lib/mdarray/ruby_functions.rb +8 -4
- data/lib/mdarray/ruby_math.rb +0 -28
- data/test/colt/matrix/test_matrix2d_floatingalgebra.rb +31 -7
- data/test/complete.rb +4 -4
- data/test/mdarray/PETR4_2014.csv +249 -0
- data/test/mdarray/VALE_2014.csv +253 -0
- data/test/mdarray/VALE_PETR4.csv +501 -0
- data/test/mdarray/arithmetic_casting.rb +1 -0
- data/test/mdarray/test_access.rb +1 -0
- data/test/mdarray/test_boolean.rb +1 -0
- data/test/mdarray/test_comparison.rb +1 -0
- data/test/mdarray/test_complete.rb +2 -5
- data/test/mdarray/test_counter.rb +1 -0
- data/test/mdarray/test_creation.rb +1 -0
- data/test/mdarray/test_csv.rb +51 -0
- data/test/mdarray/test_error.rb +1 -0
- data/test/mdarray/test_non_numeric.rb +1 -1
- data/test/mdarray/test_operator.rb +31 -14
- data/test/mdarray/test_performance.rb +2 -1
- data/test/mdarray/test_printing.rb +1 -0
- data/test/mdarray/test_sections.rb +1 -0
- data/test/mdarray/test_shape.rb +1 -0
- data/test/mdarray/test_trigonometry.rb +1 -0
- data/test/mdarray/test_views.rb +1 -0
- data/vendor/mdarray.jar +0 -0
- data/vendor/{netcdfAll-4.5_0.jar → netcdfAll-4.6.jar} +0 -0
- data/vendor/slf4j-jdk14-1.7.12.jar +0 -0
- data/version.rb +1 -1
- metadata +247 -139
- data/lib/env.rb +0 -12
- data/lib/mdarray/lazy_mdarray.rb +0 -315
- data/lib/mdarray/lazy_operators.rb +0 -174
- data/test/env.rb +0 -8
- data/test/mdarray/test_lazy.rb +0 -306
data/test/mdarray/test_access.rb
CHANGED
|
@@ -19,10 +19,7 @@
|
|
|
19
19
|
# OR MODIFICATIONS.
|
|
20
20
|
##########################################################################################
|
|
21
21
|
|
|
22
|
-
if
|
|
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
|
|
@@ -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
|
data/test/mdarray/test_error.rb
CHANGED
|
@@ -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
|
-
|
|
227
|
-
|
|
223
|
+
assert_equal("12 ", result.to_string)
|
|
224
|
+
=end
|
|
228
225
|
|
|
229
|
-
|
|
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
|
-
|
|
391
|
+
=end
|
|
375
392
|
|
|
376
393
|
end
|
|
377
|
-
|
|
378
|
-
|
|
394
|
+
|
|
395
|
+
|
|
379
396
|
end
|
data/test/mdarray/test_shape.rb
CHANGED
data/test/mdarray/test_views.rb
CHANGED
data/vendor/mdarray.jar
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/version.rb
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$gem_name = "mdarray"
|
|
2
|
-
$version="0.5.
|
|
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.
|
|
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:
|
|
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.
|
|
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: '
|
|
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: '
|
|
32
|
+
version: '3.5'
|
|
33
|
+
name: shoulda
|
|
39
34
|
prerelease: false
|
|
40
|
-
type: :
|
|
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:
|
|
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.
|
|
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.
|
|
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
|
|
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:
|
|
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
|
|
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
|
-
-
|
|
106
|
-
-
|
|
107
|
-
-
|
|
108
|
-
-
|
|
109
|
-
-
|
|
110
|
-
-
|
|
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/
|
|
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
|
-
-
|
|
152
|
-
- test/
|
|
153
|
-
- test/colt/
|
|
154
|
-
- test/colt/
|
|
155
|
-
- test/colt/
|
|
156
|
-
- test/colt/
|
|
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/
|
|
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.
|
|
258
|
-
-
|
|
259
|
-
-
|
|
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.
|
|
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
|
-
|
|
396
|
+
has_rdoc:
|