carray 1.1.4 → 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/COPYING +56 -0
- data/GPL +340 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +33 -0
- data/LEGAL +50 -0
- data/NOTE +73 -0
- data/Rakefile +20 -0
- data/TODO +5 -0
- data/ca_iter_block.c +242 -0
- data/ca_iter_dimension.c +287 -0
- data/ca_iter_window.c +202 -0
- data/ca_obj_array.c +1189 -0
- data/ca_obj_bitarray.c +523 -0
- data/ca_obj_bitfield.c +636 -0
- data/ca_obj_block.c +885 -0
- data/ca_obj_fake.c +405 -0
- data/ca_obj_farray.c +482 -0
- data/ca_obj_field.c +625 -0
- data/ca_obj_grid.c +738 -0
- data/ca_obj_mapping.c +614 -0
- data/ca_obj_object.c +777 -0
- data/ca_obj_reduce.c +299 -0
- data/ca_obj_refer.c +627 -0
- data/ca_obj_repeat.c +640 -0
- data/ca_obj_select.c +558 -0
- data/ca_obj_shift.c +952 -0
- data/ca_obj_transpose.c +582 -0
- data/ca_obj_unbound_repeat.c +557 -0
- data/ca_obj_window.c +1023 -0
- data/carray.h +1381 -0
- data/carray_access.c +1798 -0
- data/carray_attribute.c +903 -0
- data/carray_call_cfunc.c +1107 -0
- data/carray_cast.c +1155 -0
- data/carray_cast_func.rb +498 -0
- data/carray_class.c +132 -0
- data/carray_conversion.c +518 -0
- data/carray_copy.c +453 -0
- data/carray_core.c +1307 -0
- data/carray_element.c +572 -0
- data/carray_generate.c +681 -0
- data/carray_iterator.c +630 -0
- data/carray_loop.c +462 -0
- data/carray_mask.c +1174 -0
- data/carray_math.rb +834 -0
- data/carray_numeric.c +257 -0
- data/carray_operator.c +582 -0
- data/carray_order.c +1040 -0
- data/carray_random.c +529 -0
- data/carray_sort_addr.c +261 -0
- data/carray_stat.c +2102 -0
- data/carray_stat_proc.rb +1990 -0
- data/carray_test.c +602 -0
- data/carray_undef.c +69 -0
- data/carray_utils.c +740 -0
- data/ext/calculus/carray_calculus.c +792 -0
- data/ext/calculus/carray_interp.c +355 -0
- data/ext/calculus/extconf.rb +12 -0
- data/ext/calculus/lib/autoload/autoload_math_calculus.rb +2 -0
- data/ext/calculus/lib/math/calculus.rb +119 -0
- data/ext/calculus/lib/math/interp/adapter_interp1d.rb +31 -0
- data/ext/dataframe/API.txt +11 -0
- data/ext/dataframe/extconf.rb +3 -0
- data/ext/dataframe/lib/carray/autoload/autoload_dataframe_dataframe.rb +14 -0
- data/ext/dataframe/lib/carray/dataframe/dataframe.rb +1104 -0
- data/ext/dataframe/sample/test_uniq_sort.rb +5 -0
- data/ext/fortio/extconf.rb +3 -0
- data/ext/fortio/lib/carray/autoload/autoload_fortran_format.rb +5 -0
- data/ext/fortio/lib/carray/io/fortran_format.rb +43 -0
- data/ext/fortio/lib/fortio.rb +3 -0
- data/ext/fortio/lib/fortio/fortran_format.rb +603 -0
- data/ext/fortio/lib/fortio/fortran_format.tab.rb +536 -0
- data/ext/fortio/lib/fortio/fortran_format.y +215 -0
- data/ext/fortio/lib/fortio/fortran_namelist.rb +151 -0
- data/ext/fortio/lib/fortio/fortran_namelist.tab.rb +470 -0
- data/ext/fortio/lib/fortio/fortran_namelist.y +213 -0
- data/ext/fortio/lib/fortio/fortran_sequential.rb +345 -0
- data/ext/fortio/ruby_fortio.c +182 -0
- data/ext/fortio/test/test_H.rb +5 -0
- data/ext/fortio/test/test_T.rb +7 -0
- data/ext/fortio/test/test_fortran_format.rb +86 -0
- data/ext/fortio/test/test_namelist.rb +25 -0
- data/ext/fortio/test/test_sequential.rb +13 -0
- data/ext/fortio/test/test_sequential2.rb +13 -0
- data/ext/fortio/work/test.rb +10 -0
- data/ext/fortio/work/test_e.rb +19 -0
- data/ext/fortio/work/test_ep.rb +10 -0
- data/ext/fortio/work/test_parse.rb +12 -0
- data/ext/imagemap/carray_imagemap.c +495 -0
- data/ext/imagemap/doc/call_graph.dot +28 -0
- data/ext/imagemap/draw.c +567 -0
- data/ext/imagemap/extconf.rb +13 -0
- data/ext/imagemap/lib/autoload/autoload_graphics_imagemap.rb +1 -0
- data/ext/imagemap/lib/graphics/imagemap.rb +273 -0
- data/ext/imagemap/lib/image_map.rb +4 -0
- data/ext/imagemap/test/swath_index.rb +83 -0
- data/ext/imagemap/test/swath_warp.rb +99 -0
- data/ext/imagemap/test/test.rb +23 -0
- data/ext/imagemap/test/test_image.rb +42 -0
- data/ext/imagemap/test/test_line.rb +14 -0
- data/ext/imagemap/test/test_rotate.rb +17 -0
- data/ext/imagemap/test/test_triangle.rb +20 -0
- data/ext/imagemap/test/test_warp.rb +26 -0
- data/ext/mathfunc/carray_mathfunc.c +321 -0
- data/ext/mathfunc/extconf.rb +18 -0
- data/ext/mathfunc/lib/autoload/autoload_math_mathfunc.rb +1 -0
- data/ext/mathfunc/lib/math/mathfunc.rb +15 -0
- data/ext/mathfunc/test/test_hypot.rb +5 -0
- data/ext/mathfunc/test/test_j0.rb +22 -0
- data/ext/mathfunc/test/test_jn.rb +8 -0
- data/ext/mathfunc/test/test_sph.rb +9 -0
- data/ext/narray/README +22 -0
- data/ext/narray/ca_wrap_narray.c +491 -0
- data/ext/narray/carray_narray.c +21 -0
- data/ext/narray/extconf.rb +57 -0
- data/ext/narray/lib/autoload/autoload_math_narray.rb +1 -0
- data/ext/narray/lib/autoload/autoload_math_narray_miss.rb +11 -0
- data/ext/narray/lib/math/narray.rb +17 -0
- data/ext/narray/lib/math/narray_miss.rb +45 -0
- data/extconf.rb +3 -25
- data/lib/carray.rb +28 -0
- data/lib/carray/autoload/autoload_base.rb +23 -0
- data/lib/carray/autoload/autoload_graphics_gnuplot.rb +2 -0
- data/lib/carray/autoload/autoload_io_csv.rb +14 -0
- data/lib/carray/autoload/autoload_io_excel.rb +5 -0
- data/lib/carray/autoload/autoload_io_imagemagick.rb +6 -0
- data/lib/carray/autoload/autoload_io_pg.rb +6 -0
- data/lib/carray/autoload/autoload_io_sqlite3.rb +12 -0
- data/lib/carray/autoload/autoload_io_table.rb +1 -0
- data/lib/carray/autoload/autoload_math_histogram.rb +5 -0
- data/lib/carray/autoload/autoload_math_interp.rb +4 -0
- data/lib/carray/autoload/autoload_math_recurrence.rb +6 -0
- data/lib/carray/autoload/autoload_object_iterator.rb +1 -0
- data/lib/carray/autoload/autoload_object_link.rb +1 -0
- data/lib/carray/autoload/autoload_object_pack.rb +2 -0
- data/lib/carray/base/autoload.rb +94 -0
- data/lib/carray/base/basic.rb +1051 -0
- data/lib/carray/base/inspect.rb +252 -0
- data/lib/carray/base/iterator.rb +367 -0
- data/lib/carray/base/math.rb +403 -0
- data/lib/carray/base/obsolete.rb +93 -0
- data/lib/carray/base/serialize.rb +260 -0
- data/lib/carray/base/struct.rb +634 -0
- data/lib/carray/graphics/gnuplot.rb +2116 -0
- data/lib/carray/info.rb +112 -0
- data/lib/carray/io/csv.rb +560 -0
- data/lib/carray/io/excel.rb +26 -0
- data/lib/carray/io/imagemagick.rb +231 -0
- data/lib/carray/io/pg.rb +101 -0
- data/lib/carray/io/sqlite3.rb +202 -0
- data/lib/carray/io/table.rb +77 -0
- data/lib/carray/math/histogram.rb +179 -0
- data/lib/carray/math/interp.rb +57 -0
- data/lib/carray/math/interp/adapter_gsl_spline.rb +47 -0
- data/lib/carray/math/recurrence.rb +95 -0
- data/lib/carray/mkmf.rb +145 -0
- data/lib/carray/object/ca_obj_iterator.rb +52 -0
- data/lib/carray/object/ca_obj_link.rb +52 -0
- data/lib/carray/object/ca_obj_pack.rb +101 -0
- data/mkmath.rb +731 -0
- data/mt19937ar.c +182 -0
- data/mt19937ar.h +86 -0
- data/rdoc_main.rb +27 -0
- data/rdoc_math.rb +5 -0
- data/rdoc_stat.rb +31 -0
- data/ruby_carray.c +242 -0
- data/ruby_ccomplex.c +497 -0
- data/ruby_float_func.c +83 -0
- data/spec/CABlockIterator/CABlockIterator_spec.rb +113 -0
- data/spec/CArray/bug/store_spec.rb +27 -0
- data/spec/CArray/index/repeat_spec.rb +10 -0
- data/spec/CArray/method/eq_spec.rb +80 -0
- data/spec/CArray/method/is_nan_spec.rb +12 -0
- data/spec/CArray/method/ne_spec.rb +18 -0
- data/spec/CArray/method/round_spec.rb +11 -0
- data/spec/CArray/object/_attribute_spec.rb +32 -0
- data/spec/CArray/object/s_new_spec.rb +31 -0
- data/spec/CArray/serialize/Serialization_spec.rb +89 -0
- data/spec/spec_all.rb +11 -0
- data/test/test_ALL.rb +50 -0
- data/test/test_CABitfield.rb +59 -0
- data/test/test_CABlock.rb +208 -0
- data/test/test_CAField.rb +40 -0
- data/test/test_CAGrid.rb +76 -0
- data/test/test_CAMapping.rb +106 -0
- data/test/test_CAMmap.rb +11 -0
- data/test/test_CARefer.rb +94 -0
- data/test/test_CARepeat.rb +66 -0
- data/test/test_CASelect.rb +23 -0
- data/test/test_CAShift.rb +17 -0
- data/test/test_CATranspose.rb +61 -0
- data/test/test_CAVirtual.rb +214 -0
- data/test/test_CAWindow.rb +55 -0
- data/test/test_CAWrap.rb +9 -0
- data/test/test_CArray.rb +228 -0
- data/test/test_CComplex.rb +83 -0
- data/test/test_CScalar.rb +91 -0
- data/test/test_attribute.rb +281 -0
- data/test/test_block_iterator.rb +17 -0
- data/test/test_boolean.rb +99 -0
- data/test/test_cast.rb +33 -0
- data/test/test_class.rb +85 -0
- data/test/test_complex.rb +43 -0
- data/test/test_composite.rb +125 -0
- data/test/test_convert.rb +79 -0
- data/test/test_copy.rb +141 -0
- data/test/test_creation.rb +85 -0
- data/test/test_element.rb +146 -0
- data/test/test_extream.rb +55 -0
- data/test/test_generate.rb +75 -0
- data/test/test_index.rb +71 -0
- data/test/test_mask.rb +578 -0
- data/test/test_math.rb +98 -0
- data/test/test_narray.rb +64 -0
- data/test/test_order.rb +147 -0
- data/test/test_random.rb +15 -0
- data/test/test_ref_store.rb +211 -0
- data/test/test_stat.rb +414 -0
- data/test/test_struct.rb +72 -0
- data/test/test_virtual.rb +49 -0
- data/utils/ca_ase.rb +21 -0
- data/utils/ca_methods.rb +15 -0
- data/utils/cast_checker.rb +30 -0
- data/utils/create_rdoc.sh +9 -0
- data/utils/diff_method.rb +52 -0
- data/utils/extract_rdoc.rb +27 -0
- data/utils/make_tgz.sh +3 -0
- data/utils/remove_resource_fork.sh +5 -0
- data/version.h +3 -3
- metadata +266 -1
@@ -0,0 +1,49 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayVirtual < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_clone
|
9
|
+
a = CArray.int(3,3)
|
10
|
+
a[1,1] = UNDEF
|
11
|
+
b = a[1..2,1..2]
|
12
|
+
assert_equal(b, b.clone)
|
13
|
+
assert_equal(b, b.clone.to_ca)
|
14
|
+
assert_equal(b.mask, b.clone.mask)
|
15
|
+
assert_not_equal(b.object_id, b.clone.object_id)
|
16
|
+
assert_not_equal(b.mask.object_id, b.clone.mask.object_id)
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_attached?
|
20
|
+
a = CArray.int(10,10)
|
21
|
+
r = a[]
|
22
|
+
assert_equal(false, r.attached?)
|
23
|
+
r.attach{
|
24
|
+
assert_equal(true, r.attached?)
|
25
|
+
}
|
26
|
+
assert_equal(false, r.attached?)
|
27
|
+
r.attach!{
|
28
|
+
assert_equal(true, r.attached?)
|
29
|
+
}
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_root_array
|
33
|
+
a = CArray.int(10,10).seq
|
34
|
+
b = a[]
|
35
|
+
c = b[0..5,nil]
|
36
|
+
d = c[c > 50]
|
37
|
+
e = d[d.address]
|
38
|
+
assert_equal(a.object_id, b.root_array.object_id)
|
39
|
+
assert_equal(a.object_id, c.root_array.object_id)
|
40
|
+
assert_equal(a.object_id, d.root_array.object_id)
|
41
|
+
assert_equal(a.object_id, e.root_array.object_id)
|
42
|
+
assert_equal([a.object_id,
|
43
|
+
b.object_id,
|
44
|
+
c.object_id,
|
45
|
+
d.object_id,
|
46
|
+
e.object_id], e.ancestors.map{|x| x.object_id})
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
data/utils/ca_ase.rb
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'carray'
|
2
|
+
require 'pp'
|
3
|
+
|
4
|
+
class CArray
|
5
|
+
def ase_inspect (name)
|
6
|
+
io = "assert_equal("
|
7
|
+
type_name = CArray.data_type_name(self.data_type)
|
8
|
+
head = "CA_#{type_name.upcase}("
|
9
|
+
io << head
|
10
|
+
text = self.to_a.pretty_inspect().chomp!
|
11
|
+
io << text.map { |line|
|
12
|
+
line.sub(/\A +/, " " * (14 + head.length))
|
13
|
+
}.join
|
14
|
+
io << "), " << name << ")" << "\n"
|
15
|
+
return io
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
a = CArray.int(3,3).seq!
|
20
|
+
|
21
|
+
puts a.ase_inspect("a")
|
data/utils/ca_methods.rb
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
require "carray"
|
2
|
+
require "rational"
|
3
|
+
types = [
|
4
|
+
:boolean,
|
5
|
+
:int8,
|
6
|
+
:int32,
|
7
|
+
:float32,
|
8
|
+
:float64,
|
9
|
+
:cmplx64,
|
10
|
+
:cmplx128,
|
11
|
+
:object,
|
12
|
+
]
|
13
|
+
types.each do |type1|
|
14
|
+
[
|
15
|
+
2, 2.0, 2.to_r, :int8, :uint8, :float64, :object
|
16
|
+
].each do |type2|
|
17
|
+
ca1 = CArray.new(type1, [1])
|
18
|
+
if type2.is_a?(Symbol)
|
19
|
+
ca2 = CArray.new(type2, [1])
|
20
|
+
else
|
21
|
+
ca2 = type2
|
22
|
+
end
|
23
|
+
begin
|
24
|
+
atype1, atype2 = CArray.cast_self_or_other(ca1, ca2).map{|a| a.data_type_name }
|
25
|
+
printf("(%s, %s)\t -> (%s, %s)\n", type1.inspect, type2.inspect, atype1.inspect, atype2.inspect)
|
26
|
+
rescue
|
27
|
+
printf("(%s, %s)\t -> invalid pair\n", type1.inspect, type2.inspect)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
require "rational"
|
2
|
+
require "complex"
|
3
|
+
|
4
|
+
class_list = [
|
5
|
+
Kernel,
|
6
|
+
Object,
|
7
|
+
Numeric,
|
8
|
+
Float,
|
9
|
+
Integer,
|
10
|
+
Bignum,
|
11
|
+
Fixnum,
|
12
|
+
Rational,
|
13
|
+
]
|
14
|
+
|
15
|
+
cnst_orig = Object.constants
|
16
|
+
orig = {}
|
17
|
+
intr = {}
|
18
|
+
orig_s = {}
|
19
|
+
intr_s = {}
|
20
|
+
|
21
|
+
class_list.each do |klass|
|
22
|
+
orig[klass] = klass.instance_methods
|
23
|
+
orig_s[klass] = klass.singleton_methods
|
24
|
+
end
|
25
|
+
|
26
|
+
require "carray"
|
27
|
+
|
28
|
+
class_list.each do |klass|
|
29
|
+
intr[klass] = klass.instance_methods - orig[klass]
|
30
|
+
intr_s[klass] = klass.singleton_methods - orig_s[klass]
|
31
|
+
klass.ancestors[1..-1].each do |mod|
|
32
|
+
if orig.has_key?(mod)
|
33
|
+
intr[klass] -= intr[mod]
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
cnst_intr = (Object.constants - cnst_orig)
|
39
|
+
|
40
|
+
require "pp"
|
41
|
+
pp (cnst_intr.sort)
|
42
|
+
|
43
|
+
|
44
|
+
class_list.each do |klass|
|
45
|
+
puts klass
|
46
|
+
p intr[klass].sort
|
47
|
+
p intr_s[klass].sort
|
48
|
+
end
|
49
|
+
|
50
|
+
p CA.singleton_methods.sort
|
51
|
+
|
52
|
+
|
@@ -0,0 +1,27 @@
|
|
1
|
+
|
2
|
+
puts %{
|
3
|
+
class CArray
|
4
|
+
end
|
5
|
+
class CScalar
|
6
|
+
end
|
7
|
+
module CA
|
8
|
+
end
|
9
|
+
}
|
10
|
+
|
11
|
+
Dir["*.c"].each do |file|
|
12
|
+
open(file) { |io|
|
13
|
+
while line = io.gets
|
14
|
+
if line =~ /\A\s*\/\*\s*rdoc:/
|
15
|
+
while line = io.gets
|
16
|
+
case line
|
17
|
+
when /\A\s*\*\//
|
18
|
+
break
|
19
|
+
else
|
20
|
+
print line
|
21
|
+
end
|
22
|
+
end
|
23
|
+
puts
|
24
|
+
end
|
25
|
+
end
|
26
|
+
}
|
27
|
+
end
|
data/utils/make_tgz.sh
ADDED
data/version.h
CHANGED
@@ -10,9 +10,9 @@
|
|
10
10
|
|
11
11
|
---------------------------------------------------------------------------- */
|
12
12
|
|
13
|
-
#define CA_VERSION "1.1.
|
14
|
-
#define CA_VERSION_CODE
|
13
|
+
#define CA_VERSION "1.1.5"
|
14
|
+
#define CA_VERSION_CODE 115
|
15
15
|
#define CA_VERSION_MAJOR 1
|
16
16
|
#define CA_VERSION_MINOR 1
|
17
|
-
#define CA_VERSION_TEENY
|
17
|
+
#define CA_VERSION_TEENY 5
|
18
18
|
#define CA_VERSION_DATE "2016/05/06"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: carray
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hiroki Motoyoshi
|
@@ -20,9 +20,236 @@ executables: []
|
|
20
20
|
extensions: []
|
21
21
|
extra_rdoc_files: []
|
22
22
|
files:
|
23
|
+
- COPYING
|
24
|
+
- GPL
|
25
|
+
- Gemfile
|
26
|
+
- Gemfile.lock
|
27
|
+
- LEGAL
|
28
|
+
- NOTE
|
23
29
|
- README.md
|
30
|
+
- Rakefile
|
31
|
+
- TODO
|
32
|
+
- ca_iter_block.c
|
33
|
+
- ca_iter_dimension.c
|
34
|
+
- ca_iter_window.c
|
35
|
+
- ca_obj_array.c
|
36
|
+
- ca_obj_bitarray.c
|
37
|
+
- ca_obj_bitfield.c
|
38
|
+
- ca_obj_block.c
|
39
|
+
- ca_obj_fake.c
|
40
|
+
- ca_obj_farray.c
|
41
|
+
- ca_obj_field.c
|
42
|
+
- ca_obj_grid.c
|
43
|
+
- ca_obj_mapping.c
|
44
|
+
- ca_obj_object.c
|
45
|
+
- ca_obj_reduce.c
|
46
|
+
- ca_obj_refer.c
|
47
|
+
- ca_obj_repeat.c
|
48
|
+
- ca_obj_select.c
|
49
|
+
- ca_obj_shift.c
|
50
|
+
- ca_obj_transpose.c
|
51
|
+
- ca_obj_unbound_repeat.c
|
52
|
+
- ca_obj_window.c
|
24
53
|
- carray.gemspec
|
54
|
+
- carray.h
|
55
|
+
- carray_access.c
|
56
|
+
- carray_attribute.c
|
57
|
+
- carray_call_cfunc.c
|
58
|
+
- carray_cast.c
|
59
|
+
- carray_cast_func.rb
|
60
|
+
- carray_class.c
|
61
|
+
- carray_conversion.c
|
62
|
+
- carray_copy.c
|
63
|
+
- carray_core.c
|
64
|
+
- carray_element.c
|
65
|
+
- carray_generate.c
|
66
|
+
- carray_iterator.c
|
67
|
+
- carray_loop.c
|
68
|
+
- carray_mask.c
|
69
|
+
- carray_math.rb
|
70
|
+
- carray_numeric.c
|
71
|
+
- carray_operator.c
|
72
|
+
- carray_order.c
|
73
|
+
- carray_random.c
|
74
|
+
- carray_sort_addr.c
|
75
|
+
- carray_stat.c
|
76
|
+
- carray_stat_proc.rb
|
77
|
+
- carray_test.c
|
78
|
+
- carray_undef.c
|
79
|
+
- carray_utils.c
|
80
|
+
- ext/calculus/carray_calculus.c
|
81
|
+
- ext/calculus/carray_interp.c
|
82
|
+
- ext/calculus/extconf.rb
|
83
|
+
- ext/calculus/lib/autoload/autoload_math_calculus.rb
|
84
|
+
- ext/calculus/lib/math/calculus.rb
|
85
|
+
- ext/calculus/lib/math/interp/adapter_interp1d.rb
|
86
|
+
- ext/dataframe/API.txt
|
87
|
+
- ext/dataframe/extconf.rb
|
88
|
+
- ext/dataframe/lib/carray/autoload/autoload_dataframe_dataframe.rb
|
89
|
+
- ext/dataframe/lib/carray/dataframe/dataframe.rb
|
90
|
+
- ext/dataframe/sample/test_uniq_sort.rb
|
91
|
+
- ext/fortio/extconf.rb
|
92
|
+
- ext/fortio/lib/carray/autoload/autoload_fortran_format.rb
|
93
|
+
- ext/fortio/lib/carray/io/fortran_format.rb
|
94
|
+
- ext/fortio/lib/fortio.rb
|
95
|
+
- ext/fortio/lib/fortio/fortran_format.rb
|
96
|
+
- ext/fortio/lib/fortio/fortran_format.tab.rb
|
97
|
+
- ext/fortio/lib/fortio/fortran_format.y
|
98
|
+
- ext/fortio/lib/fortio/fortran_namelist.rb
|
99
|
+
- ext/fortio/lib/fortio/fortran_namelist.tab.rb
|
100
|
+
- ext/fortio/lib/fortio/fortran_namelist.y
|
101
|
+
- ext/fortio/lib/fortio/fortran_sequential.rb
|
102
|
+
- ext/fortio/ruby_fortio.c
|
103
|
+
- ext/fortio/test/test_H.rb
|
104
|
+
- ext/fortio/test/test_T.rb
|
105
|
+
- ext/fortio/test/test_fortran_format.rb
|
106
|
+
- ext/fortio/test/test_namelist.rb
|
107
|
+
- ext/fortio/test/test_sequential.rb
|
108
|
+
- ext/fortio/test/test_sequential2.rb
|
109
|
+
- ext/fortio/work/test.rb
|
110
|
+
- ext/fortio/work/test_e.rb
|
111
|
+
- ext/fortio/work/test_ep.rb
|
112
|
+
- ext/fortio/work/test_parse.rb
|
113
|
+
- ext/imagemap/carray_imagemap.c
|
114
|
+
- ext/imagemap/doc/call_graph.dot
|
115
|
+
- ext/imagemap/draw.c
|
116
|
+
- ext/imagemap/extconf.rb
|
117
|
+
- ext/imagemap/lib/autoload/autoload_graphics_imagemap.rb
|
118
|
+
- ext/imagemap/lib/graphics/imagemap.rb
|
119
|
+
- ext/imagemap/lib/image_map.rb
|
120
|
+
- ext/imagemap/test/swath_index.rb
|
121
|
+
- ext/imagemap/test/swath_warp.rb
|
122
|
+
- ext/imagemap/test/test.rb
|
123
|
+
- ext/imagemap/test/test_image.rb
|
124
|
+
- ext/imagemap/test/test_line.rb
|
125
|
+
- ext/imagemap/test/test_rotate.rb
|
126
|
+
- ext/imagemap/test/test_triangle.rb
|
127
|
+
- ext/imagemap/test/test_warp.rb
|
128
|
+
- ext/mathfunc/carray_mathfunc.c
|
129
|
+
- ext/mathfunc/extconf.rb
|
130
|
+
- ext/mathfunc/lib/autoload/autoload_math_mathfunc.rb
|
131
|
+
- ext/mathfunc/lib/math/mathfunc.rb
|
132
|
+
- ext/mathfunc/test/test_hypot.rb
|
133
|
+
- ext/mathfunc/test/test_j0.rb
|
134
|
+
- ext/mathfunc/test/test_jn.rb
|
135
|
+
- ext/mathfunc/test/test_sph.rb
|
136
|
+
- ext/narray/README
|
137
|
+
- ext/narray/ca_wrap_narray.c
|
138
|
+
- ext/narray/carray_narray.c
|
139
|
+
- ext/narray/extconf.rb
|
140
|
+
- ext/narray/lib/autoload/autoload_math_narray.rb
|
141
|
+
- ext/narray/lib/autoload/autoload_math_narray_miss.rb
|
142
|
+
- ext/narray/lib/math/narray.rb
|
143
|
+
- ext/narray/lib/math/narray_miss.rb
|
25
144
|
- extconf.rb
|
145
|
+
- lib/carray.rb
|
146
|
+
- lib/carray/autoload/autoload_base.rb
|
147
|
+
- lib/carray/autoload/autoload_graphics_gnuplot.rb
|
148
|
+
- lib/carray/autoload/autoload_io_csv.rb
|
149
|
+
- lib/carray/autoload/autoload_io_excel.rb
|
150
|
+
- lib/carray/autoload/autoload_io_imagemagick.rb
|
151
|
+
- lib/carray/autoload/autoload_io_pg.rb
|
152
|
+
- lib/carray/autoload/autoload_io_sqlite3.rb
|
153
|
+
- lib/carray/autoload/autoload_io_table.rb
|
154
|
+
- lib/carray/autoload/autoload_math_histogram.rb
|
155
|
+
- lib/carray/autoload/autoload_math_interp.rb
|
156
|
+
- lib/carray/autoload/autoload_math_recurrence.rb
|
157
|
+
- lib/carray/autoload/autoload_object_iterator.rb
|
158
|
+
- lib/carray/autoload/autoload_object_link.rb
|
159
|
+
- lib/carray/autoload/autoload_object_pack.rb
|
160
|
+
- lib/carray/base/autoload.rb
|
161
|
+
- lib/carray/base/basic.rb
|
162
|
+
- lib/carray/base/inspect.rb
|
163
|
+
- lib/carray/base/iterator.rb
|
164
|
+
- lib/carray/base/math.rb
|
165
|
+
- lib/carray/base/obsolete.rb
|
166
|
+
- lib/carray/base/serialize.rb
|
167
|
+
- lib/carray/base/struct.rb
|
168
|
+
- lib/carray/graphics/gnuplot.rb
|
169
|
+
- lib/carray/info.rb
|
170
|
+
- lib/carray/io/csv.rb
|
171
|
+
- lib/carray/io/excel.rb
|
172
|
+
- lib/carray/io/imagemagick.rb
|
173
|
+
- lib/carray/io/pg.rb
|
174
|
+
- lib/carray/io/sqlite3.rb
|
175
|
+
- lib/carray/io/table.rb
|
176
|
+
- lib/carray/math/histogram.rb
|
177
|
+
- lib/carray/math/interp.rb
|
178
|
+
- lib/carray/math/interp/adapter_gsl_spline.rb
|
179
|
+
- lib/carray/math/recurrence.rb
|
180
|
+
- lib/carray/mkmf.rb
|
181
|
+
- lib/carray/object/ca_obj_iterator.rb
|
182
|
+
- lib/carray/object/ca_obj_link.rb
|
183
|
+
- lib/carray/object/ca_obj_pack.rb
|
184
|
+
- mkmath.rb
|
185
|
+
- mt19937ar.c
|
186
|
+
- mt19937ar.h
|
187
|
+
- rdoc_main.rb
|
188
|
+
- rdoc_math.rb
|
189
|
+
- rdoc_stat.rb
|
190
|
+
- ruby_carray.c
|
191
|
+
- ruby_ccomplex.c
|
192
|
+
- ruby_float_func.c
|
193
|
+
- spec/CABlockIterator/CABlockIterator_spec.rb
|
194
|
+
- spec/CArray/bug/store_spec.rb
|
195
|
+
- spec/CArray/index/repeat_spec.rb
|
196
|
+
- spec/CArray/method/eq_spec.rb
|
197
|
+
- spec/CArray/method/is_nan_spec.rb
|
198
|
+
- spec/CArray/method/ne_spec.rb
|
199
|
+
- spec/CArray/method/round_spec.rb
|
200
|
+
- spec/CArray/object/_attribute_spec.rb
|
201
|
+
- spec/CArray/object/s_new_spec.rb
|
202
|
+
- spec/CArray/serialize/Serialization_spec.rb
|
203
|
+
- spec/spec_all.rb
|
204
|
+
- test/test_ALL.rb
|
205
|
+
- test/test_CABitfield.rb
|
206
|
+
- test/test_CABlock.rb
|
207
|
+
- test/test_CAField.rb
|
208
|
+
- test/test_CAGrid.rb
|
209
|
+
- test/test_CAMapping.rb
|
210
|
+
- test/test_CAMmap.rb
|
211
|
+
- test/test_CARefer.rb
|
212
|
+
- test/test_CARepeat.rb
|
213
|
+
- test/test_CASelect.rb
|
214
|
+
- test/test_CAShift.rb
|
215
|
+
- test/test_CATranspose.rb
|
216
|
+
- test/test_CAVirtual.rb
|
217
|
+
- test/test_CAWindow.rb
|
218
|
+
- test/test_CAWrap.rb
|
219
|
+
- test/test_CArray.rb
|
220
|
+
- test/test_CComplex.rb
|
221
|
+
- test/test_CScalar.rb
|
222
|
+
- test/test_attribute.rb
|
223
|
+
- test/test_block_iterator.rb
|
224
|
+
- test/test_boolean.rb
|
225
|
+
- test/test_cast.rb
|
226
|
+
- test/test_class.rb
|
227
|
+
- test/test_complex.rb
|
228
|
+
- test/test_composite.rb
|
229
|
+
- test/test_convert.rb
|
230
|
+
- test/test_copy.rb
|
231
|
+
- test/test_creation.rb
|
232
|
+
- test/test_element.rb
|
233
|
+
- test/test_extream.rb
|
234
|
+
- test/test_generate.rb
|
235
|
+
- test/test_index.rb
|
236
|
+
- test/test_mask.rb
|
237
|
+
- test/test_math.rb
|
238
|
+
- test/test_narray.rb
|
239
|
+
- test/test_order.rb
|
240
|
+
- test/test_random.rb
|
241
|
+
- test/test_ref_store.rb
|
242
|
+
- test/test_stat.rb
|
243
|
+
- test/test_struct.rb
|
244
|
+
- test/test_virtual.rb
|
245
|
+
- utils/ca_ase.rb
|
246
|
+
- utils/ca_methods.rb
|
247
|
+
- utils/cast_checker.rb
|
248
|
+
- utils/create_rdoc.sh
|
249
|
+
- utils/diff_method.rb
|
250
|
+
- utils/extract_rdoc.rb
|
251
|
+
- utils/make_tgz.sh
|
252
|
+
- utils/remove_resource_fork.sh
|
26
253
|
- version.h
|
27
254
|
- version.rb
|
28
255
|
homepage: https://github.com/himotoyoshi/carray
|
@@ -35,6 +262,44 @@ rdoc_options:
|
|
35
262
|
- rdoc_ext.rb
|
36
263
|
- rdoc_math.rb
|
37
264
|
- rdoc_stat.rb
|
265
|
+
- lib/carray/autoload/autoload_base.rb
|
266
|
+
- lib/carray/autoload/autoload_graphics_gnuplot.rb
|
267
|
+
- lib/carray/autoload/autoload_io_csv.rb
|
268
|
+
- lib/carray/autoload/autoload_io_excel.rb
|
269
|
+
- lib/carray/autoload/autoload_io_imagemagick.rb
|
270
|
+
- lib/carray/autoload/autoload_io_pg.rb
|
271
|
+
- lib/carray/autoload/autoload_io_sqlite3.rb
|
272
|
+
- lib/carray/autoload/autoload_io_table.rb
|
273
|
+
- lib/carray/autoload/autoload_math_histogram.rb
|
274
|
+
- lib/carray/autoload/autoload_math_interp.rb
|
275
|
+
- lib/carray/autoload/autoload_math_recurrence.rb
|
276
|
+
- lib/carray/autoload/autoload_object_iterator.rb
|
277
|
+
- lib/carray/autoload/autoload_object_link.rb
|
278
|
+
- lib/carray/autoload/autoload_object_pack.rb
|
279
|
+
- lib/carray/base/autoload.rb
|
280
|
+
- lib/carray/base/basic.rb
|
281
|
+
- lib/carray/base/inspect.rb
|
282
|
+
- lib/carray/base/iterator.rb
|
283
|
+
- lib/carray/base/math.rb
|
284
|
+
- lib/carray/base/obsolete.rb
|
285
|
+
- lib/carray/base/serialize.rb
|
286
|
+
- lib/carray/base/struct.rb
|
287
|
+
- lib/carray/graphics/gnuplot.rb
|
288
|
+
- lib/carray/info.rb
|
289
|
+
- lib/carray/io/csv.rb
|
290
|
+
- lib/carray/io/excel.rb
|
291
|
+
- lib/carray/io/imagemagick.rb
|
292
|
+
- lib/carray/io/pg.rb
|
293
|
+
- lib/carray/io/sqlite3.rb
|
294
|
+
- lib/carray/io/table.rb
|
295
|
+
- lib/carray/math/histogram.rb
|
296
|
+
- lib/carray/math/interp/adapter_gsl_spline.rb
|
297
|
+
- lib/carray/math/interp.rb
|
298
|
+
- lib/carray/math/recurrence.rb
|
299
|
+
- lib/carray/mkmf.rb
|
300
|
+
- lib/carray/object/ca_obj_iterator.rb
|
301
|
+
- lib/carray/object/ca_obj_link.rb
|
302
|
+
- lib/carray/object/ca_obj_pack.rb
|
38
303
|
require_paths:
|
39
304
|
- lib
|
40
305
|
required_ruby_version: !ruby/object:Gem::Requirement
|