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
data/test/test_math.rb
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestMath < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_zerodiv
|
9
|
+
zero = CArray.int(3,3) { 0 }
|
10
|
+
one = CArray.int(3,3) { 1 }
|
11
|
+
assert_raise(ZeroDivisionError) { 1/zero }
|
12
|
+
assert_raise(ZeroDivisionError) { one/zero } # div, div!
|
13
|
+
assert_raise(ZeroDivisionError) { one/0 }
|
14
|
+
assert_raise(ZeroDivisionError) { one/zero }
|
15
|
+
assert_raise(ZeroDivisionError) { one % 0 } # mod, mod!
|
16
|
+
assert_raise(ZeroDivisionError) { one % zero }
|
17
|
+
assert_raise(ZeroDivisionError) { zero.rcp } # rcp!
|
18
|
+
assert_raise(ZeroDivisionError) { zero.rcp_mul(1) } # rcp_mul!
|
19
|
+
assert_raise(ZeroDivisionError) { zero.rcp_mul(one) }
|
20
|
+
assert_raise(ZeroDivisionError) { 0 ** (-one) } # pow, pow!
|
21
|
+
assert_raise(ZeroDivisionError) { zero ** (-one) }
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_cmp
|
25
|
+
a = CA_INT([0,1,2,3,4])
|
26
|
+
b = CA_INT([4,3,2,1,0])
|
27
|
+
|
28
|
+
# ---
|
29
|
+
assert_equal(CA_INT8([-1,-1,0,1,1]), a <=> 2)
|
30
|
+
assert_equal(CA_INT8([1,1,0,-1,-1]), 2 <=> a)
|
31
|
+
assert_equal(CA_INT8([-1,-1,0,1,1]), a <=> b)
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_bit_op
|
35
|
+
a = CArray.int(10).seq!
|
36
|
+
|
37
|
+
# ---
|
38
|
+
assert_equal(a.convert{|x| ~x}, ~a)
|
39
|
+
|
40
|
+
assert_equal(a.convert{|x| x & 1}, a & 1)
|
41
|
+
assert_equal(a & 1, 1 & a)
|
42
|
+
|
43
|
+
assert_equal(a.convert{|x| x | 1}, a | 1)
|
44
|
+
assert_equal(a | 1, 1 | a)
|
45
|
+
|
46
|
+
assert_equal(a.convert{|x| x ^ 1}, a ^ 1)
|
47
|
+
assert_equal(a ^ 1, 1 ^ a)
|
48
|
+
|
49
|
+
# ---
|
50
|
+
assert_equal(a.convert{|x| x << 1}, a << 1)
|
51
|
+
assert_equal(a.convert{|x| 1 << x}, 1 << a)
|
52
|
+
|
53
|
+
assert_equal(a.convert{|x| x >> 1}, a >> 1)
|
54
|
+
assert_equal(a.convert{|x| 1 >> x}, 1 >> a)
|
55
|
+
end
|
56
|
+
|
57
|
+
def test_max_min
|
58
|
+
a = CArray.int(3,3).seq!
|
59
|
+
b = a.reverse
|
60
|
+
|
61
|
+
# ---
|
62
|
+
assert_equal(CA_INT32([[8,7,6],
|
63
|
+
[5,4,5],
|
64
|
+
[6,7,8]]), a.pmax(b))
|
65
|
+
assert_equal(CA_INT32([[0,1,2],
|
66
|
+
[3,4,3],
|
67
|
+
[2,1,0]]), a.pmin(b))
|
68
|
+
# ---
|
69
|
+
assert_equal(CA_INT32([[0,0,0],
|
70
|
+
[0,0,0],
|
71
|
+
[0,0,0]]), a.pmin(0))
|
72
|
+
assert_equal(CA_INT32([[8,8,8],
|
73
|
+
[8,8,8],
|
74
|
+
[8,8,8]]), a.pmax(8))
|
75
|
+
# ---
|
76
|
+
assert_equal(CA_INT32([[0,0,0],
|
77
|
+
[0,0,0],
|
78
|
+
[0,0,0]]), CA_INT32(0).pmin(a))
|
79
|
+
assert_equal(CA_INT32([[8,8,8],
|
80
|
+
[8,8,8],
|
81
|
+
[8,8,8]]), CA_INT32(8).pmax(a))
|
82
|
+
# ---
|
83
|
+
assert_equal(CA_INT32([[8,7,6],
|
84
|
+
[5,4,5],
|
85
|
+
[6,7,8]]), CAMath.max(a, b))
|
86
|
+
assert_equal(CA_INT32([[0,1,2],
|
87
|
+
[3,4,3],
|
88
|
+
[2,1,0]]), CAMath.min(a, b))
|
89
|
+
# ---
|
90
|
+
assert_equal(CA_INT32([[0,0,0],
|
91
|
+
[0,0,0],
|
92
|
+
[0,0,0]]), CAMath.min(0,a,b,8))
|
93
|
+
assert_equal(CA_INT32([[8,8,8],
|
94
|
+
[8,8,8],
|
95
|
+
[8,8,8]]), CAMath.max(0,a,b,8))
|
96
|
+
end
|
97
|
+
|
98
|
+
end
|
data/test/test_narray.rb
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayNArray < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_na
|
9
|
+
a = CArray.int32(3, 3).seq!
|
10
|
+
assert_equal(NArray.int(3,3).indgen!, a.na)
|
11
|
+
assert_equal(NArray.int(9).indgen!, a.na(9))
|
12
|
+
|
13
|
+
b = a.na
|
14
|
+
assert_equal(a, b.ca)
|
15
|
+
assert_equal(CArray.int(9).seq!, b.ca(9))
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_to_na
|
19
|
+
a = CArray.int32(3, 3).seq!
|
20
|
+
assert_equal(NArray.int(3,3).indgen!, a.to_na)
|
21
|
+
|
22
|
+
b = a.to_na
|
23
|
+
assert_equal(a, b.to_ca)
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_asign
|
27
|
+
a = CArray.int32(3, 3) { 0 }
|
28
|
+
b = NArray.int(3,3).indgen!
|
29
|
+
a[] = b
|
30
|
+
assert_equal(b.ca, a)
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_empty_array
|
34
|
+
|
35
|
+
na0 = NArray.int(0)
|
36
|
+
ca0 = CArray.int(0)
|
37
|
+
ca30 = CArray.int(3,0)
|
38
|
+
|
39
|
+
#--- na
|
40
|
+
assert_equal(na0, ca0.na)
|
41
|
+
assert_equal(na0, ca30.na)
|
42
|
+
|
43
|
+
#--- to_na
|
44
|
+
assert_equal(na0, ca0.to_na)
|
45
|
+
assert_equal(na0, ca30.to_na)
|
46
|
+
|
47
|
+
#--- to_na!
|
48
|
+
assert_equal(na0, ca0.to_na!)
|
49
|
+
assert_equal(na0, ca30.to_na!)
|
50
|
+
|
51
|
+
#--- ca
|
52
|
+
assert_equal(ca0, na0.ca)
|
53
|
+
|
54
|
+
#--- to_ca
|
55
|
+
assert_equal(ca0, na0.to_ca)
|
56
|
+
|
57
|
+
#--- to_ca!
|
58
|
+
assert_equal(ca0, na0.to_ca!)
|
59
|
+
assert_equal(na0, ca30.to_na!)
|
60
|
+
|
61
|
+
end
|
62
|
+
|
63
|
+
|
64
|
+
end
|
data/test/test_order.rb
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayOrder < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_where
|
9
|
+
# ---
|
10
|
+
a = CArray.int(3,3).seq!
|
11
|
+
c = (a % 2).eq(0)
|
12
|
+
assert_equal(a[c], c.where)
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_index
|
16
|
+
# ---
|
17
|
+
a = CArray.float(3,3).seq!
|
18
|
+
assert_equal(CA_INT32([[0,1,2],
|
19
|
+
[3,4,5],
|
20
|
+
[6,7,8]]), a.address)
|
21
|
+
assert_equal(CA_INT32([0,1,2]), a.index(0))
|
22
|
+
assert_equal(CA_INT32([0,1,2]), a.index(1))
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_indices
|
26
|
+
# ---
|
27
|
+
a = CArray.float(3,3).seq!
|
28
|
+
a.indices {|x, y|
|
29
|
+
assert_equal(CA_INT32([[0,0,0],
|
30
|
+
[1,1,1],
|
31
|
+
[2,2,2]]), x)
|
32
|
+
assert_equal(CA_INT32([[0,1,2],
|
33
|
+
[0,1,2],
|
34
|
+
[0,1,2]]), y)
|
35
|
+
}
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_reverse
|
39
|
+
a = CArray.int32(3,3).seq!
|
40
|
+
b = CArray.int32(3,3).seq!(8,-1)
|
41
|
+
|
42
|
+
# ---
|
43
|
+
assert_equal(b, a.reverse)
|
44
|
+
assert_equal(b, a.reversed)
|
45
|
+
|
46
|
+
c = a.to_ca.reverse!
|
47
|
+
assert_equal(b, c)
|
48
|
+
end
|
49
|
+
|
50
|
+
def test_sort
|
51
|
+
a = CA_INT32([[5,4,3],
|
52
|
+
[0,1,2],
|
53
|
+
[8,7,6]])
|
54
|
+
s = CA_INT32([[0,1,2],
|
55
|
+
[3,4,5],
|
56
|
+
[6,7,8]])
|
57
|
+
# ---
|
58
|
+
assert_equal(s, a.sort)
|
59
|
+
b = a.to_ca
|
60
|
+
b.sort!
|
61
|
+
assert_equal(s, b)
|
62
|
+
end
|
63
|
+
|
64
|
+
def test_sort_addr
|
65
|
+
a = CA_INT32([[5,4,3],
|
66
|
+
[0,1,2],
|
67
|
+
[8,7,6]])
|
68
|
+
# ---
|
69
|
+
assert_equal(CA_INT32([[3,4,5],
|
70
|
+
[2,1,0],
|
71
|
+
[8,7,6]]), a.sort_addr)
|
72
|
+
assert_equal(CA_INT32([[5,4,3],
|
73
|
+
[0,1,2],
|
74
|
+
[8,7,6]]), a.order)
|
75
|
+
# ---
|
76
|
+
assert_equal(CA_INT32([[6,7,8],
|
77
|
+
[0,1,2],
|
78
|
+
[5,4,3]]), a.sort_addr.reverse)
|
79
|
+
assert_equal(CA_INT32([[3,4,5],
|
80
|
+
[8,7,6],
|
81
|
+
[0,1,2]]), a.order(-1))
|
82
|
+
end
|
83
|
+
|
84
|
+
def test_uniq
|
85
|
+
a = CArray.int(100).random!(10)
|
86
|
+
|
87
|
+
# ---
|
88
|
+
assert_equal(a.to_a.uniq, a.uniq.to_a)
|
89
|
+
|
90
|
+
end
|
91
|
+
|
92
|
+
def test_search
|
93
|
+
# ---
|
94
|
+
a = CArray.int(9,9).seq!
|
95
|
+
assert_equal(50, a.bsearch(50))
|
96
|
+
assert_equal(50, a.search(50))
|
97
|
+
assert_equal([5,5], a.bsearch_index(50))
|
98
|
+
assert_equal([5,5], a.search_index(50))
|
99
|
+
# ---
|
100
|
+
a = CArray.int(9,9).seq!(0,2)
|
101
|
+
assert_equal(nil, a.bsearch(51))
|
102
|
+
assert_equal(nil, a.search(51))
|
103
|
+
assert_equal(nil, a.bsearch_index(51))
|
104
|
+
assert_equal(nil, a.search_index(51))
|
105
|
+
# ---
|
106
|
+
a = CArray.float(9,9).span!(0..80)
|
107
|
+
assert_equal(50, a.bsearch(50))
|
108
|
+
assert_equal(50, a.search(50))
|
109
|
+
assert_equal([5,5], a.bsearch_index(50))
|
110
|
+
assert_equal([5,5], a.search_index(50))
|
111
|
+
|
112
|
+
assert_equal(nil, a.bsearch(50.0001))
|
113
|
+
assert_equal(nil, a.search(50.0001))
|
114
|
+
assert_equal(nil, a.bsearch_index(50.0001))
|
115
|
+
assert_equal(nil, a.search_index(50.0001))
|
116
|
+
# ---
|
117
|
+
a = CArray.float(9,9).span!(0..80)
|
118
|
+
assert_equal(50, a.search(50.0001, 0.0001))
|
119
|
+
assert_equal([5,5], a.search_index(50.0001, 0.0001))
|
120
|
+
|
121
|
+
assert_equal(nil, a.search(50.0001, 0.00001))
|
122
|
+
assert_equal(nil, a.search_index(50.0001, 0.00001))
|
123
|
+
end
|
124
|
+
|
125
|
+
def test_search_nearest
|
126
|
+
# ---
|
127
|
+
a = CArray.int(9,9).seq!
|
128
|
+
assert_equal(50, a.search_nearest(50))
|
129
|
+
assert_equal([5,5], a.search_nearest_index(50))
|
130
|
+
# ---
|
131
|
+
a = CArray.int(9,9).seq!(0,2)
|
132
|
+
assert_equal(25, a.search_nearest(51))
|
133
|
+
assert_equal([2,7], a.search_nearest_index(51))
|
134
|
+
# ---
|
135
|
+
a = CArray.float(9,9).span!(0..80)
|
136
|
+
assert_equal(50, a.search_nearest(50))
|
137
|
+
assert_equal([5,5], a.search_nearest_index(50))
|
138
|
+
|
139
|
+
assert_equal(50, a.search_nearest(50.5))
|
140
|
+
assert_equal([5,5], a.search_nearest_index(50.5))
|
141
|
+
|
142
|
+
# first detected
|
143
|
+
assert_equal(49, a.search_nearest(49.5))
|
144
|
+
assert_equal([5,4], a.search_nearest_index(49.5))
|
145
|
+
|
146
|
+
end
|
147
|
+
end
|
data/test/test_random.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayRandom < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_random
|
9
|
+
a = CArray.uint8(100, 100).random!(10)
|
10
|
+
assert_equal(0, (a < 0).count_true)
|
11
|
+
assert_equal(0, (a > 10).count_true)
|
12
|
+
end
|
13
|
+
|
14
|
+
|
15
|
+
end
|
@@ -0,0 +1,211 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayRefStore < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_access_point
|
9
|
+
# ---
|
10
|
+
a = CArray.int(3,3).seq!
|
11
|
+
assert_equal(0, a[0,0])
|
12
|
+
assert_equal(4, a[1,1])
|
13
|
+
assert_equal(8, a[-1,-1])
|
14
|
+
assert_raise(IndexError) { a[0,3] }
|
15
|
+
assert_raise(IndexError) { a[-4,0] }
|
16
|
+
|
17
|
+
# ---
|
18
|
+
a = CArray.int(3,3).seq!
|
19
|
+
a[0,0] = -1
|
20
|
+
a[1,1] = -2
|
21
|
+
a[-1,-1] = -3
|
22
|
+
assert_equal(-1, a[0,0])
|
23
|
+
assert_equal(-2, a[1,1])
|
24
|
+
assert_equal(-3, a[-1,-1])
|
25
|
+
assert_raise(IndexError) { a[0,3] = -4 }
|
26
|
+
assert_raise(IndexError) { a[-4,0] = -5 }
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_access_block
|
30
|
+
# ---
|
31
|
+
a = CArray.int(3,3).seq!
|
32
|
+
assert_equal(CA_INT([1, 4, 7]), a[0..-1,1])
|
33
|
+
assert_equal(CA_INT([[1], [4], [7]]), a[0..-1,[1]])
|
34
|
+
assert_equal(CABlock, a[0..2,0..2].class)
|
35
|
+
assert_equal(a, a[0..2,0..2])
|
36
|
+
assert_equal(CABlock, a[nil,nil].class)
|
37
|
+
assert_equal(a, a[nil,nil])
|
38
|
+
assert_equal(a, a[-3..-1,-3..-1])
|
39
|
+
assert_equal(CA_INT([[0,1,2],[3,4,5]]), a[0..1, nil])
|
40
|
+
assert_equal(CA_INT([[0,2],[3,5]]), a[0..1, [nil,2]])
|
41
|
+
assert_raise(IndexError) { a[0,0..3] }
|
42
|
+
assert_raise(IndexError) { a[-4..-1,0] }
|
43
|
+
assert_raise(IndexError) { a[0,[0,3,2]] }
|
44
|
+
assert_raise(IndexError) { a[0,[0,4]] }
|
45
|
+
|
46
|
+
# ---
|
47
|
+
a = CArray.int(3,3).seq!
|
48
|
+
assert_equal(CA_INT([[0,1,2], [3,4,5], [6,7,8]]), a)
|
49
|
+
|
50
|
+
# ---
|
51
|
+
a = CArray.int(3,3).seq!
|
52
|
+
a[0..-1, 1] = 9
|
53
|
+
assert_equal(CA_INT([[0,9,2], [3,9,5], [6,9,8]]), a)
|
54
|
+
|
55
|
+
# ---
|
56
|
+
a = CArray.int(3,3).seq!
|
57
|
+
a[0..-1, [1]] = 9
|
58
|
+
assert_equal(CA_INT([[0,9,2], [3,9,5], [6,9,8]]), a)
|
59
|
+
|
60
|
+
# ---
|
61
|
+
a = CArray.int(3,3).seq!
|
62
|
+
a[nil, nil] = 9
|
63
|
+
assert_equal(CA_INT([[9,9,9], [9,9,9], [9,9,9]]), a)
|
64
|
+
|
65
|
+
# ---
|
66
|
+
a = CArray.int(3,3).seq!
|
67
|
+
a[0..1, [nil,2]] = 9
|
68
|
+
assert_equal(CA_INT([[9,1,9], [9,4,9], [6,7,8]]), a)
|
69
|
+
|
70
|
+
# ---
|
71
|
+
a = CArray.int(3,3).seq!
|
72
|
+
assert_raise(IndexError) { a[0,0..3] = -3 }
|
73
|
+
assert_raise(IndexError) { a[-4..-1,0] = -4 }
|
74
|
+
assert_raise(IndexError) { a[0,[0,3,2]] = -5 }
|
75
|
+
assert_raise(IndexError) { a[0,[0,4]] = -6 }
|
76
|
+
|
77
|
+
end
|
78
|
+
|
79
|
+
def test_access_selection
|
80
|
+
# ---
|
81
|
+
a = CArray.int(3,3).seq!;
|
82
|
+
assert_equal(CA_INT([0,1,2,3,4]), a[a < 5])
|
83
|
+
|
84
|
+
# ---
|
85
|
+
a = CArray.int(3,3).seq!
|
86
|
+
a[a < 5] = 1
|
87
|
+
assert_equal(CA_INT([[1,1,1],[1,1,5],[6,7,8]]), a)
|
88
|
+
end
|
89
|
+
|
90
|
+
def test_access_mapping
|
91
|
+
# ---
|
92
|
+
a = CArray.int(3,3).seq!;
|
93
|
+
m = a.shuffle
|
94
|
+
assert_equal(10*m, (10*a)[m])
|
95
|
+
|
96
|
+
# ---
|
97
|
+
a = CArray.int(3,3).seq!
|
98
|
+
b = 10*a
|
99
|
+
m = a.shuffle
|
100
|
+
a[m] = (10*m)
|
101
|
+
assert_equal(b, a)
|
102
|
+
end
|
103
|
+
|
104
|
+
def test_access_grid
|
105
|
+
# ---
|
106
|
+
a = CArray.int(3,3).seq!;
|
107
|
+
assert_equal(CA_INT([[1,2],[4,5]]), a[CA_INT([0,1]),1..2])
|
108
|
+
assert_equal(CA_INT([[0,2],[6,8]]), a[+[0,2],+[0,2]])
|
109
|
+
|
110
|
+
# ---
|
111
|
+
a = CArray.int(3,3).seq!
|
112
|
+
a[+[0,2],+[0,2]] = 9
|
113
|
+
assert_equal(CA_INT([[9,1,9], [3,4,5], [9,7,9]]), a)
|
114
|
+
end
|
115
|
+
|
116
|
+
def test_access_repeat
|
117
|
+
# ---
|
118
|
+
# See test_CARepeat
|
119
|
+
end
|
120
|
+
|
121
|
+
def test_access_method
|
122
|
+
# ---
|
123
|
+
a = CArray.int(3,3).seq!
|
124
|
+
assert_equal(CA_INT([0,1,2,3,4]), a[:lt, 5])
|
125
|
+
|
126
|
+
# ---
|
127
|
+
a = CArray.int(3,3).seq!
|
128
|
+
a[:lt,5] = 1
|
129
|
+
assert_equal(CA_INT([[1,1,1],[1,1,5],[6,7,8]]), a)
|
130
|
+
end
|
131
|
+
|
132
|
+
def test_access_address
|
133
|
+
# ---
|
134
|
+
a = CArray.int(3,3).seq!
|
135
|
+
assert_equal(0, a[0])
|
136
|
+
assert_equal(4, a[4])
|
137
|
+
assert_equal(8, a[-1])
|
138
|
+
assert_raise(IndexError) { a[9] }
|
139
|
+
assert_raise(IndexError) { a[-10] }
|
140
|
+
|
141
|
+
# ---
|
142
|
+
a = CArray.int(3,3).seq!
|
143
|
+
a[0] = -1
|
144
|
+
a[4] = -2
|
145
|
+
a[-1] = -3
|
146
|
+
assert_equal(-1, a[0,0])
|
147
|
+
assert_equal(-2, a[1,1])
|
148
|
+
assert_equal(-3, a[-1,-1])
|
149
|
+
assert_raise(IndexError) { a[9] = -4 }
|
150
|
+
assert_raise(IndexError) { a[-10] = -5 }
|
151
|
+
end
|
152
|
+
|
153
|
+
def test_access_address_block
|
154
|
+
# ---
|
155
|
+
a = CArray.int(3,3).seq!
|
156
|
+
assert_equal(CA_INT([4]), a[[4]])
|
157
|
+
assert_equal(CA_INT([0,1,2,3]), a[[0..3]])
|
158
|
+
assert_equal(CABlock, a[nil].class)
|
159
|
+
assert_equal(CA_INT([0,1,2,3,4,5,6,7,8]), a[nil])
|
160
|
+
assert_raise(IndexError) { a[0..9] }
|
161
|
+
assert_raise(IndexError) { a[-10..-1] }
|
162
|
+
|
163
|
+
# ---
|
164
|
+
a = CArray.int(3,3).seq!
|
165
|
+
assert_equal(CA_INT([[0,1,2], [3,4,5], [6,7,8]]), a)
|
166
|
+
|
167
|
+
# ---
|
168
|
+
a = CArray.int(3,3).seq!
|
169
|
+
a[[1..-1,3]] = 9
|
170
|
+
assert_equal(CA_INT([[0,9,2], [3,9,5], [6,9,8]]), a)
|
171
|
+
|
172
|
+
# ---
|
173
|
+
a = CArray.int(3,3).seq!
|
174
|
+
a[[1,3,3]] = 9
|
175
|
+
assert_equal(CA_INT([[0,9,2], [3,9,5], [6,9,8]]), a)
|
176
|
+
|
177
|
+
# ---
|
178
|
+
a = CArray.int(3,3).seq!
|
179
|
+
a[nil] = 9
|
180
|
+
assert_equal(CA_INT([[9,9,9], [9,9,9], [9,9,9]]), a)
|
181
|
+
|
182
|
+
# ---
|
183
|
+
a = CArray.int(3,3).seq!
|
184
|
+
assert_raise(IndexError) { a[0..9] = -3 }
|
185
|
+
assert_raise(IndexError) { a[-10..-1] = -4 }
|
186
|
+
end
|
187
|
+
|
188
|
+
def test_access_address_selection
|
189
|
+
# ---
|
190
|
+
a = CArray.int(3,3).seq!;
|
191
|
+
a1 = a.flatten
|
192
|
+
assert_equal(CA_INT([0,1,2,3,4]), a[a1 < 5])
|
193
|
+
|
194
|
+
# ---
|
195
|
+
a = CArray.int(3,3).seq!
|
196
|
+
a[a1 < 5] = 1
|
197
|
+
assert_equal(CA_INT([[1,1,1],[1,1,5],[6,7,8]]), a)
|
198
|
+
end
|
199
|
+
|
200
|
+
def test_access_address_grid
|
201
|
+
# ---
|
202
|
+
a = CArray.int(3,3).seq!;
|
203
|
+
assert_equal(CA_INT([0,2,4,6,8]), a[+[0,2,4,6,8]])
|
204
|
+
|
205
|
+
# ---
|
206
|
+
a = CArray.int(3,3).seq!
|
207
|
+
a[+[0,2,4,6,8]] = 9
|
208
|
+
assert_equal(CA_INT([[9,1,9],[3,9,5],[9,7,9]]), a)
|
209
|
+
end
|
210
|
+
|
211
|
+
end
|