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,146 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayElement < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_set_unset
|
9
|
+
#
|
10
|
+
a = CArray.boolean(3,3) {0}
|
11
|
+
a.set(1,1)
|
12
|
+
assert_equal(CA_BOOLEAN([[0,0,0],[0,1,0],[0,0,0]]), a)
|
13
|
+
|
14
|
+
#
|
15
|
+
a = CArray.boolean(3,3) {0}
|
16
|
+
a.set(4)
|
17
|
+
assert_equal(CA_BOOLEAN([[0,0,0],[0,1,0],[0,0,0]]), a)
|
18
|
+
|
19
|
+
#
|
20
|
+
a = CArray.boolean(3,3) {1}
|
21
|
+
a.unset(1,1)
|
22
|
+
assert_equal(CA_BOOLEAN([[1,1,1],[1,0,1],[1,1,1]]), a)
|
23
|
+
|
24
|
+
#
|
25
|
+
a = CArray.boolean(3,3) {1}
|
26
|
+
a.unset(4)
|
27
|
+
assert_equal(CA_BOOLEAN([[1,1,1],[1,0,1],[1,1,1]]), a)
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_elem_swap
|
31
|
+
#
|
32
|
+
a = CArray.int(3,3).seq!
|
33
|
+
a.elem_swap([1,1], [-1,-1])
|
34
|
+
assert_equal(8, a[1,1])
|
35
|
+
assert_equal(4, a[-1,-1])
|
36
|
+
|
37
|
+
#
|
38
|
+
a = CArray.int(3,3).seq!
|
39
|
+
a[1,1] = UNDEF
|
40
|
+
a.elem_swap([1,1], [-1,-1])
|
41
|
+
assert_equal(8, a[1,1])
|
42
|
+
assert_equal(UNDEF, a[-1,-1])
|
43
|
+
|
44
|
+
#
|
45
|
+
a = CArray.int(3,3).seq!
|
46
|
+
a.elem_swap(0, -1)
|
47
|
+
assert_equal(8, a[0, 0])
|
48
|
+
assert_equal(0, a[-1,-1])
|
49
|
+
|
50
|
+
#
|
51
|
+
a = CArray.int(3,3).seq!
|
52
|
+
a[0,0] = UNDEF
|
53
|
+
a.elem_swap(0, -1)
|
54
|
+
assert_equal(8, a[0, 0])
|
55
|
+
assert_equal(UNDEF, a[-1,-1])
|
56
|
+
|
57
|
+
end
|
58
|
+
|
59
|
+
def test_elem_copy
|
60
|
+
#
|
61
|
+
a = CArray.int(3,3).seq!
|
62
|
+
a.elem_copy([1,1], [-1,-1])
|
63
|
+
assert_equal(4, a[1,1])
|
64
|
+
assert_equal(4, a[-1,-1])
|
65
|
+
|
66
|
+
#
|
67
|
+
a = CArray.int(3,3).seq!
|
68
|
+
a[1,1] = UNDEF
|
69
|
+
a.elem_copy([1,1], [-1,-1])
|
70
|
+
assert_equal(UNDEF, a[1,1])
|
71
|
+
assert_equal(UNDEF, a[-1,-1])
|
72
|
+
|
73
|
+
#
|
74
|
+
a = CArray.int(3,3).seq!
|
75
|
+
a.elem_copy(0, -1)
|
76
|
+
assert_equal(0, a[0, 0])
|
77
|
+
assert_equal(0, a[-1,-1])
|
78
|
+
|
79
|
+
#
|
80
|
+
a = CArray.int(3,3).seq!
|
81
|
+
a[0,0] = UNDEF
|
82
|
+
a.elem_copy(0, -1)
|
83
|
+
assert_equal(UNDEF, a[0, 0])
|
84
|
+
assert_equal(UNDEF, a[-1,-1])
|
85
|
+
|
86
|
+
end
|
87
|
+
|
88
|
+
def test_elem_fetch
|
89
|
+
#
|
90
|
+
a = CArray.int(3,3).seq!
|
91
|
+
assert_equal(4, a.elem_fetch([1,1]))
|
92
|
+
a[1,1] = UNDEF
|
93
|
+
assert_equal(UNDEF, a.elem_fetch([1,1]))
|
94
|
+
|
95
|
+
#
|
96
|
+
a = CArray.int(3,3).seq!
|
97
|
+
assert_equal(4, a.elem_fetch(4))
|
98
|
+
a[1,1] = UNDEF
|
99
|
+
assert_equal(UNDEF, a.elem_fetch(4))
|
100
|
+
end
|
101
|
+
|
102
|
+
def test_elem_store
|
103
|
+
#
|
104
|
+
a = CArray.int(3,3).seq!
|
105
|
+
a.elem_store([1,1], -4)
|
106
|
+
assert_equal(-4, a.elem_fetch([1,1]))
|
107
|
+
a.elem_store([1,1], UNDEF)
|
108
|
+
assert_equal(UNDEF, a.elem_fetch([1,1]))
|
109
|
+
|
110
|
+
#
|
111
|
+
a = CArray.int(3,3).seq!
|
112
|
+
a.elem_store(4, -4)
|
113
|
+
assert_equal(-4, a.elem_fetch(4))
|
114
|
+
a.elem_store(4, UNDEF)
|
115
|
+
assert_equal(UNDEF, a.elem_fetch(4))
|
116
|
+
end
|
117
|
+
|
118
|
+
def test_elem_incr_decr
|
119
|
+
#
|
120
|
+
a = CArray.int(3,3).seq!
|
121
|
+
a.elem_incr([1,1])
|
122
|
+
assert_equal(5, a.elem_fetch([1,1]))
|
123
|
+
a.elem_decr([1,1])
|
124
|
+
assert_equal(4, a.elem_fetch([1,1]))
|
125
|
+
|
126
|
+
#
|
127
|
+
a = CArray.int(3,3).seq!
|
128
|
+
a.elem_incr(4)
|
129
|
+
assert_equal(5, a.elem_fetch(4))
|
130
|
+
a.elem_decr(4)
|
131
|
+
assert_equal(4, a.elem_fetch(4))
|
132
|
+
end
|
133
|
+
|
134
|
+
def test_elem_incr_255
|
135
|
+
#
|
136
|
+
a = CArray.uint8(1) {255}
|
137
|
+
a.elem_incr(0)
|
138
|
+
assert_equal(0, a.elem_fetch(0))
|
139
|
+
|
140
|
+
#
|
141
|
+
a = CArray.int8(1) {127}
|
142
|
+
a.elem_incr(0)
|
143
|
+
assert_equal(-128, a.elem_fetch(0))
|
144
|
+
end
|
145
|
+
|
146
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayExtream < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_zero_length_array
|
9
|
+
# ---
|
10
|
+
a = CArray.int(0)
|
11
|
+
assert_equal(1, a.rank)
|
12
|
+
assert_equal(0, a.elements)
|
13
|
+
assert_equal([0], a.dim)
|
14
|
+
assert_equal(0, a.dim0)
|
15
|
+
|
16
|
+
# ---
|
17
|
+
a = CArray.int(0, 3)
|
18
|
+
assert_equal(2, a.rank)
|
19
|
+
assert_equal(0, a.elements)
|
20
|
+
assert_equal([0,3], a.dim)
|
21
|
+
assert_equal(0, a.dim0)
|
22
|
+
assert_equal(3, a.dim1)
|
23
|
+
|
24
|
+
# ---
|
25
|
+
a = CArray.int(3, 0)
|
26
|
+
assert_equal(2, a.rank)
|
27
|
+
assert_equal(0, a.elements)
|
28
|
+
assert_equal([3,0], a.dim)
|
29
|
+
assert_equal(3, a.dim0)
|
30
|
+
assert_equal(0, a.dim1)
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_zero_length_fixlen
|
34
|
+
# ---
|
35
|
+
assert_nothing_raised { CArray.new(CA_FIXLEN, [3,3], :bytes => 0) }
|
36
|
+
assert_raise(RuntimeError){ CArray.new(CA_FIXLEN, [3,3], :bytes => -1) }
|
37
|
+
end
|
38
|
+
|
39
|
+
def test_large_rank_array
|
40
|
+
# ---
|
41
|
+
dim = [2] * (CA_RANK_MAX)
|
42
|
+
assert_instance_of(CArray, CArray.int8(*dim))
|
43
|
+
|
44
|
+
# ---
|
45
|
+
dim = [2] * (CA_RANK_MAX+1)
|
46
|
+
assert_raise(RuntimeError){ CArray.int8(*dim) }
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_negative_dimension_size
|
50
|
+
# ---
|
51
|
+
assert_raise(RuntimeError){ CArray.int8(-1) }
|
52
|
+
assert_raise(RuntimeError){ CArray.int8(-1, -1) }
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
@@ -0,0 +1,75 @@
|
|
1
|
+
#$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayGenerate < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_swap_bytes
|
9
|
+
#
|
10
|
+
a = CArray.int16(3,3) { 0x1234 }
|
11
|
+
b = CArray.int16(3,3) { 0x3412 }
|
12
|
+
assert_equal(b, a.swap_bytes)
|
13
|
+
assert_equal(a, b.swap_bytes)
|
14
|
+
assert_equal(a, a.swap_bytes.swap_bytes)
|
15
|
+
|
16
|
+
#
|
17
|
+
a = CArray.int32(3,3) { 0x12345678 }
|
18
|
+
b = CArray.int32(3,3) { 0x78563412 }
|
19
|
+
assert_equal(b, a.swap_bytes)
|
20
|
+
assert_equal(a, b.swap_bytes)
|
21
|
+
assert_equal(a, a.swap_bytes.swap_bytes)
|
22
|
+
|
23
|
+
#
|
24
|
+
if CArray::HAVE_COMPLEX
|
25
|
+
c = CArray.int32(1) { 0x12345678 }
|
26
|
+
x = c.refer(CA_FLOAT32, [1])[0]
|
27
|
+
y = c.swap_bytes.refer(CA_FLOAT32, [1])[0]
|
28
|
+
a = CArray.complex(3,3) { x + y*CI }
|
29
|
+
b = CArray.complex(3,3) { y + x*CI }
|
30
|
+
assert_equal(b, a.swap_bytes)
|
31
|
+
assert_equal(a, b.swap_bytes)
|
32
|
+
assert_equal(a, a.swap_bytes.swap_bytes)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_seq
|
37
|
+
# ---
|
38
|
+
a = CArray.object(3).seq!
|
39
|
+
assert_equal(CA_OBJECT([0,1,2]), a)
|
40
|
+
|
41
|
+
# ---
|
42
|
+
a = CArray.object(3).seq!(1)
|
43
|
+
assert_equal(CA_OBJECT([1,2,3]), a)
|
44
|
+
|
45
|
+
# ---
|
46
|
+
a = CArray.object(3).seq!(1,2)
|
47
|
+
assert_equal(CA_OBJECT([1,3,5]), a)
|
48
|
+
|
49
|
+
# ---
|
50
|
+
a = CArray.object(3).seq!(3,-1)
|
51
|
+
assert_equal(CA_OBJECT([3,2,1]), a)
|
52
|
+
|
53
|
+
# ---
|
54
|
+
a = CArray.object(3).seq!("a", "a")
|
55
|
+
assert_equal(CA_OBJECT(["a", "aa", "aaa"]), a)
|
56
|
+
|
57
|
+
# ---
|
58
|
+
a = CArray.object(3).seq!("a", :succ)
|
59
|
+
assert_equal(CA_OBJECT(["a", "b", "c"]), a)
|
60
|
+
|
61
|
+
# ---
|
62
|
+
a = CArray.object(3).seq!("a", :succ) { |x| "@" + x }
|
63
|
+
assert_equal(CA_OBJECT(["@a", "@b", "@c"]), a)
|
64
|
+
|
65
|
+
# ---
|
66
|
+
a = CArray.object(3).seq!("a", :succ)
|
67
|
+
assert_equal(CA_OBJECT(["@a", "@b", "@c"]), CA_OBJECT("@") + a)
|
68
|
+
|
69
|
+
# ---
|
70
|
+
a = CArray.object(3).seq!([], [nil])
|
71
|
+
assert_equal(CA_OBJECT([[], [nil], [nil, nil]]), a)
|
72
|
+
end
|
73
|
+
|
74
|
+
|
75
|
+
end
|
data/test/test_index.rb
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayIndex < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_index
|
9
|
+
a = CArray.int(3,3).seq!
|
10
|
+
assert_raise(IndexError) { a[0, 0, 0]} ### invalid rank
|
11
|
+
assert_raise(IndexError) { a[[0,1,1,2], 0]}
|
12
|
+
assert_raise(IndexError) { a[[0,4], 0]}
|
13
|
+
assert_raise(IndexError) { a[[0,3,2], 0]}
|
14
|
+
assert_raise(NoMethodError) { a[:abcdefg, 0]}
|
15
|
+
assert_raise(IndexError) { a[0, :abcdefg]}
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_rubber_dim
|
19
|
+
a = CArray.int(3,3,3,3,3).seq!
|
20
|
+
|
21
|
+
assert_equal(a[false], a[nil, nil, nil, nil, nil])
|
22
|
+
|
23
|
+
assert_equal(a[0,false], a[0, nil, nil, nil, nil])
|
24
|
+
assert_equal(a[false,0], a[nil, nil, nil, nil, 0])
|
25
|
+
assert_equal(a[0,false,0], a[0, nil, nil, nil, 0])
|
26
|
+
|
27
|
+
assert_equal(a[0..1,false], a[0..1, nil, nil, nil, nil])
|
28
|
+
assert_equal(a[false,0..1], a[nil, nil, nil, nil, 0..1])
|
29
|
+
assert_equal(a[0..1,false,0..1], a[0..1, nil, nil, nil, 0..1])
|
30
|
+
|
31
|
+
assert_equal(a[nil,false], a[nil, nil, nil, nil, nil])
|
32
|
+
assert_equal(a[false,nil], a[nil, nil, nil, nil, nil])
|
33
|
+
assert_equal(a[nil,false,nil], a[nil, nil, nil, nil, nil])
|
34
|
+
|
35
|
+
assert_raise(IndexError) { a[0,0,0,0,0,0,false] }
|
36
|
+
|
37
|
+
end
|
38
|
+
|
39
|
+
|
40
|
+
def test_scan_index
|
41
|
+
info = CArray.scan_index([3,3],[])
|
42
|
+
assert_equal([info.type, info.index], [CA_REG_ALL, []])
|
43
|
+
info = CArray.scan_index([3,3],[1])
|
44
|
+
assert_equal([info.type, info.index], [CA_REG_ADDRESS, [1]])
|
45
|
+
info = CArray.scan_index([3,3],[1..2])
|
46
|
+
assert_equal([info.type, info.index], [CA_REG_ADDRESS_COMPLEX, [[1,2,1]]])
|
47
|
+
info = CArray.scan_index([3,3],[1,1])
|
48
|
+
assert_equal([info.type, info.index], [CA_REG_POINT, [1,1]])
|
49
|
+
info = CArray.scan_index([3,3],[1,nil])
|
50
|
+
assert_equal([info.type, info.index], [CA_REG_BLOCK, [1,[0,3,1]]])
|
51
|
+
a = CArray.int(3,3).seq!
|
52
|
+
i = CArray.int(3).seq!
|
53
|
+
info = CArray.scan_index([3,3],[a.eq(4)])
|
54
|
+
assert_equal([info.type, info.index], [CA_REG_SELECT, []])
|
55
|
+
info = CArray.scan_index([3,3],[a])
|
56
|
+
assert_equal([info.type, info.index], [CA_REG_MAPPING, []])
|
57
|
+
info = CArray.scan_index([3,3],[i,i])
|
58
|
+
assert_equal([info.type, info.index], [CA_REG_GRID, []])
|
59
|
+
info = CArray.scan_index([3,3],[:%, :%, 2])
|
60
|
+
assert_equal([info.type, info.index], [CA_REG_REPEAT, []])
|
61
|
+
info = CArray.scan_index([3,3],[nil, nil, :*])
|
62
|
+
assert_equal([info.type, info.index], [CA_REG_UNBOUND_REPEAT, []])
|
63
|
+
end
|
64
|
+
|
65
|
+
def test_addr2index
|
66
|
+
a = CArray.int(3,3,3)
|
67
|
+
assert_equal([1,1,1], a.addr2index(13))
|
68
|
+
assert_equal(13, a.index2addr(1,1,1))
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
data/test/test_mask.rb
ADDED
@@ -0,0 +1,578 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayMask < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_basic_features
|
9
|
+
|
10
|
+
# ---
|
11
|
+
a = CArray.int32(3,3).seq!
|
12
|
+
assert_equal(false, a.has_mask?) ### mask array is not created
|
13
|
+
assert_equal(CA_INT32([[0,1,2],
|
14
|
+
[3,4,5],
|
15
|
+
[6,7,8]]), a.value)
|
16
|
+
assert_equal(0, a.mask) ### mask array is not created
|
17
|
+
assert_equal(CA_BOOLEAN([[0,0,0],
|
18
|
+
[0,0,0],
|
19
|
+
[0,0,0]]), a.is_masked)
|
20
|
+
assert_equal(CA_BOOLEAN([[1,1,1],
|
21
|
+
[1,1,1],
|
22
|
+
[1,1,1]]), a.is_not_masked)
|
23
|
+
assert_equal(0, a.count_masked)
|
24
|
+
assert_equal(9, a.count_not_masked)
|
25
|
+
|
26
|
+
# ---
|
27
|
+
a = CArray.int32(3,3).seq!
|
28
|
+
a.mask = 0
|
29
|
+
assert_equal(true, a.has_mask?) ### mask array is created
|
30
|
+
assert_equal(CA_INT32([[0,1,2],
|
31
|
+
[3,4,5],
|
32
|
+
[6,7,8]]), a.value)
|
33
|
+
assert_equal(CA_BOOLEAN([[0,0,0],
|
34
|
+
[0,0,0],
|
35
|
+
[0,0,0]]), a.mask) ### mask array is created
|
36
|
+
assert_equal(CA_BOOLEAN([[0,0,0],
|
37
|
+
[0,0,0],
|
38
|
+
[0,0,0]]), a.is_masked)
|
39
|
+
assert_equal(CA_BOOLEAN([[1,1,1],
|
40
|
+
[1,1,1],
|
41
|
+
[1,1,1]]), a.is_not_masked)
|
42
|
+
assert_equal(0, a.count_masked)
|
43
|
+
assert_equal(9, a.count_not_masked)
|
44
|
+
|
45
|
+
# ---
|
46
|
+
a = CArray.int32(3,3).seq!
|
47
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
48
|
+
[1,1,1],
|
49
|
+
[0,1,0]])
|
50
|
+
assert_equal(true, a.has_mask?)
|
51
|
+
assert_equal(CA_INT32([[0,1,2],
|
52
|
+
[3,4,5],
|
53
|
+
[6,7,8]]), a.value)
|
54
|
+
assert_equal(CA_BOOLEAN([[0,1,0],
|
55
|
+
[1,1,1],
|
56
|
+
[0,1,0]]), a.mask)
|
57
|
+
assert_equal(CA_BOOLEAN([[0,1,0],
|
58
|
+
[1,1,1],
|
59
|
+
[0,1,0]]), a.is_masked)
|
60
|
+
assert_equal(CA_BOOLEAN([[1,0,1],
|
61
|
+
[0,0,0],
|
62
|
+
[1,0,1]]), a.is_not_masked)
|
63
|
+
assert_equal(5, a.count_masked)
|
64
|
+
assert_equal(4, a.count_not_masked)
|
65
|
+
end
|
66
|
+
|
67
|
+
def test_equality_when_mask_is_added
|
68
|
+
# ---
|
69
|
+
a = CArray.int32(3,3).seq!
|
70
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
71
|
+
[1,1,1],
|
72
|
+
[0,1,0]])
|
73
|
+
b = CArray.int32(3,3).seq!
|
74
|
+
b.mask = CA_BOOLEAN([[0,1,0],
|
75
|
+
[1,1,1],
|
76
|
+
[0,1,0]])
|
77
|
+
assert_equal(a.mask, b.mask)
|
78
|
+
assert_equal(a.is_masked, b.is_masked)
|
79
|
+
assert_equal(a, b)
|
80
|
+
|
81
|
+
# ---
|
82
|
+
a = CArray.int32(3,3).seq!
|
83
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
84
|
+
[0,1,0],
|
85
|
+
[0,1,0]])
|
86
|
+
b = CArray.int32(3,3).seq!
|
87
|
+
b.mask = CA_BOOLEAN([[0,0,0],
|
88
|
+
[1,1,1],
|
89
|
+
[0,0,0]])
|
90
|
+
assert_not_equal(a.mask, b.mask)
|
91
|
+
assert_not_equal(a.is_masked, b.is_masked)
|
92
|
+
assert_not_equal(a, b)
|
93
|
+
|
94
|
+
# ---
|
95
|
+
a = CArray.int32(3,3).seq!
|
96
|
+
b = CArray.int32(3,3).seq!
|
97
|
+
b.mask = CA_BOOLEAN([[0,0,0],
|
98
|
+
[0,0,0],
|
99
|
+
[0,0,0]])
|
100
|
+
assert_not_equal(a.mask, b.mask)
|
101
|
+
assert_equal(a.is_masked, b.is_masked)
|
102
|
+
assert_equal(a, b)
|
103
|
+
|
104
|
+
# ---
|
105
|
+
a = CArray.int32(3,3).seq!
|
106
|
+
a.mask = CA_BOOLEAN([[0,0,0],
|
107
|
+
[1,1,1],
|
108
|
+
[0,0,0]])
|
109
|
+
b = CArray.int32(3,3).seq!
|
110
|
+
b.mask = CA_BOOLEAN([[0,0,0],
|
111
|
+
[1,1,1],
|
112
|
+
[0,0,0]])
|
113
|
+
a.value[1,nil] = 1
|
114
|
+
b.value[1,nil] = -1
|
115
|
+
assert_not_equal(a.value, b.value)
|
116
|
+
assert_equal(a.mask, b.mask)
|
117
|
+
assert_equal(a.is_masked, b.is_masked)
|
118
|
+
assert_equal(a, b)
|
119
|
+
end
|
120
|
+
|
121
|
+
def test_has_mask?
|
122
|
+
# test_basic_feature
|
123
|
+
end
|
124
|
+
|
125
|
+
def test_any_masked?
|
126
|
+
#
|
127
|
+
a = CA_INT(0..2)
|
128
|
+
a.mask = 0
|
129
|
+
assert_equal(false, a.any_masked?)
|
130
|
+
a[1] = UNDEF
|
131
|
+
assert_equal(true, a.any_masked?)
|
132
|
+
a.unmask
|
133
|
+
assert_equal(false, a.any_masked?)
|
134
|
+
end
|
135
|
+
|
136
|
+
def test_value
|
137
|
+
#
|
138
|
+
a = CArray.int32(3,3)
|
139
|
+
a.mask = 0
|
140
|
+
assert_raise(RuntimeError) {
|
141
|
+
a.value.mask = 1 ### can't set mask to value array
|
142
|
+
}
|
143
|
+
end
|
144
|
+
|
145
|
+
def test_mask
|
146
|
+
# test_basic_feature
|
147
|
+
a = CArray.int32(3,3)
|
148
|
+
a.mask = 0
|
149
|
+
assert_raise(RuntimeError) {
|
150
|
+
a.mask.mask = 1 ### can't set mask to mask array
|
151
|
+
}
|
152
|
+
end
|
153
|
+
|
154
|
+
def test_mask=
|
155
|
+
# ---
|
156
|
+
a = CArray.int32(3,3).seq!
|
157
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
158
|
+
[1,1,1],
|
159
|
+
[0,1,0]]) ### Though the mask array can hold the value
|
160
|
+
### other than 0 or 1, the value 0 means
|
161
|
+
### masked and otherwise means not-masked.
|
162
|
+
assert_equal(CA_BOOLEAN([[0,1,0],
|
163
|
+
[1,1,1],
|
164
|
+
[0,1,0]]), a.mask)
|
165
|
+
assert_equal(CA_BOOLEAN([[0,1,0],
|
166
|
+
[1,1,1],
|
167
|
+
[0,1,0]]), a.is_masked)
|
168
|
+
assert_equal(CA_BOOLEAN([[1,0,1],
|
169
|
+
[0,0,0],
|
170
|
+
[1,0,1]]), a.is_not_masked)
|
171
|
+
assert_equal(5, a.count_masked)
|
172
|
+
assert_equal(4, a.count_not_masked)
|
173
|
+
|
174
|
+
# ---
|
175
|
+
a = CArray.int32(3,3).seq!
|
176
|
+
m = CA_BOOLEAN([[0,1,0],
|
177
|
+
[0,1,0],
|
178
|
+
[0,1,0]])
|
179
|
+
m.mask = CA_BOOLEAN([[0,0,0],
|
180
|
+
[1,1,1],
|
181
|
+
[0,0,0]])
|
182
|
+
a.mask = m ### When masked array is set as mask,
|
183
|
+
### masked position is also set as
|
184
|
+
### masked elements.
|
185
|
+
assert_not_equal(m, a.mask)
|
186
|
+
assert_equal(CA_BOOLEAN([[0,1,0],
|
187
|
+
[1,1,1],
|
188
|
+
[0,1,0]]), a.mask)
|
189
|
+
end
|
190
|
+
|
191
|
+
def test_is_masked
|
192
|
+
# test_basic_features
|
193
|
+
end
|
194
|
+
|
195
|
+
def test_is_not_masked
|
196
|
+
# test_basic_features
|
197
|
+
end
|
198
|
+
|
199
|
+
def test_count_masked
|
200
|
+
# test_basic_featrues
|
201
|
+
end
|
202
|
+
|
203
|
+
def test_count_not_masked
|
204
|
+
# test_basic_featrues
|
205
|
+
end
|
206
|
+
|
207
|
+
def test_unmask
|
208
|
+
# ---
|
209
|
+
x = CArray.int32(3,3).seq!
|
210
|
+
x.mask = CA_BOOLEAN([[0,1,0],
|
211
|
+
[1,1,1],
|
212
|
+
[0,1,0]])
|
213
|
+
|
214
|
+
a = x.to_ca
|
215
|
+
b = x.to_ca
|
216
|
+
|
217
|
+
a.unmask()
|
218
|
+
assert_equal(true, a.has_mask?) ### never mask eliminated from array
|
219
|
+
assert_equal(CA_INT32([[0,1,2],
|
220
|
+
[3,4,5],
|
221
|
+
[6,7,8]]), a)
|
222
|
+
|
223
|
+
b.unmask(-1)
|
224
|
+
assert_equal(true, b.has_mask?) ### never mask eliminated from array
|
225
|
+
assert_equal(CA_INT32([[0,-1,2], ### filled with fill_value
|
226
|
+
[-1,-1,-1],
|
227
|
+
[6,-1,8]]), b)
|
228
|
+
end
|
229
|
+
|
230
|
+
def test_unmask_copy
|
231
|
+
# ---
|
232
|
+
a = CArray.int32(3,3).seq!
|
233
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
234
|
+
[1,1,1],
|
235
|
+
[0,1,0]])
|
236
|
+
u = a.unmask_copy()
|
237
|
+
assert_equal(false, u.has_mask?) ### never mask eliminated from array
|
238
|
+
assert_equal(CA_INT32([[0,1,2],
|
239
|
+
[3,4,5],
|
240
|
+
[6,7,8]]), u)
|
241
|
+
|
242
|
+
# ---
|
243
|
+
a = CArray.int32(3,3).seq!
|
244
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
245
|
+
[1,1,1],
|
246
|
+
[0,1,0]])
|
247
|
+
u = a.unmask_copy(-1)
|
248
|
+
assert_equal(false, u.has_mask?) ### never mask eliminated from array
|
249
|
+
assert_equal(CA_INT32([[0,-1,2], ### filled with fill_value
|
250
|
+
[-1,-1,-1],
|
251
|
+
[6,-1,8]]), u)
|
252
|
+
end
|
253
|
+
|
254
|
+
def test_inherit_mask
|
255
|
+
# ---
|
256
|
+
a = CArray.int32(3,3).seq!
|
257
|
+
b = CArray.int32(3,3).seq!
|
258
|
+
c = CArray.int32(3,3).seq!
|
259
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
260
|
+
[0,0,0],
|
261
|
+
[0,1,0]])
|
262
|
+
b.mask = CA_BOOLEAN([[0,0,0],
|
263
|
+
[1,0,1],
|
264
|
+
[0,0,0]])
|
265
|
+
c.mask = CA_BOOLEAN([[0,0,0],
|
266
|
+
[0,1,0],
|
267
|
+
[0,0,0]])
|
268
|
+
c.inherit_mask(a,b)
|
269
|
+
assert_equal(CA_BOOLEAN([[0,1,0],
|
270
|
+
[1,1,1],
|
271
|
+
[0,1,0]]), c.mask)
|
272
|
+
end
|
273
|
+
|
274
|
+
def test_inherit_mask_replace
|
275
|
+
# ---
|
276
|
+
a = CArray.int32(3,3).seq!
|
277
|
+
b = CArray.int32(3,3).seq!
|
278
|
+
c = CArray.int32(3,3).seq!
|
279
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
280
|
+
[0,0,0],
|
281
|
+
[0,1,0]])
|
282
|
+
b.mask = CA_BOOLEAN([[0,0,0],
|
283
|
+
[1,0,1],
|
284
|
+
[0,0,0]])
|
285
|
+
c.mask = CA_BOOLEAN([[0,0,0],
|
286
|
+
[0,1,0],
|
287
|
+
[0,0,0]])
|
288
|
+
c.inherit_mask_replace(a,b)
|
289
|
+
assert_equal(CA_BOOLEAN([[0,1,0],
|
290
|
+
[1,0,1],
|
291
|
+
[0,1,0]]), c.mask)
|
292
|
+
|
293
|
+
# ---
|
294
|
+
a = CArray.int32(3,3).seq!
|
295
|
+
|
296
|
+
end
|
297
|
+
|
298
|
+
# ----------------------------------------------------------------------
|
299
|
+
|
300
|
+
def test_monop
|
301
|
+
# ---
|
302
|
+
a = CArray.float64(3,3) {1}
|
303
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
304
|
+
[1,1,1],
|
305
|
+
[0,1,0]])
|
306
|
+
b = -a ### example of monop
|
307
|
+
assert_equal(a.mask, b.mask)
|
308
|
+
end
|
309
|
+
|
310
|
+
def test_binop
|
311
|
+
# ---
|
312
|
+
a = CArray.float64(3,3) {1}
|
313
|
+
b = CArray.float64(3,3) {1}
|
314
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
315
|
+
[0,1,0],
|
316
|
+
[0,1,0]])
|
317
|
+
b.mask = CA_BOOLEAN([[0,0,0],
|
318
|
+
[1,1,1],
|
319
|
+
[0,0,0]])
|
320
|
+
c = a + b ### example of binop
|
321
|
+
assert_equal(CA_BOOLEAN([[0,1,0],
|
322
|
+
[1,1,1],
|
323
|
+
[0,1,0]]), c.mask)
|
324
|
+
end
|
325
|
+
|
326
|
+
def test_cmpop
|
327
|
+
# ---
|
328
|
+
a = CArray.float64(3,3) {1}
|
329
|
+
b = CArray.float64(3,3) {1}
|
330
|
+
a.mask = CA_BOOLEAN([[0,1,0],
|
331
|
+
[0,1,0],
|
332
|
+
[0,1,0]])
|
333
|
+
b.mask = CA_BOOLEAN([[0,0,0],
|
334
|
+
[1,1,1],
|
335
|
+
[0,0,0]])
|
336
|
+
c = a.le(b) ### example of binop
|
337
|
+
assert_equal(CA_BOOLEAN([[0,1,0],
|
338
|
+
[1,1,1],
|
339
|
+
[0,1,0]]), c.mask)
|
340
|
+
end
|
341
|
+
|
342
|
+
# ----------------------------------------------------------------------
|
343
|
+
|
344
|
+
def test_basic_stat
|
345
|
+
# ---
|
346
|
+
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
347
|
+
|
348
|
+
assert_equal(1, a.min)
|
349
|
+
assert_equal(1, a.min(:mask_limit => 0))
|
350
|
+
assert_equal(1, a.min(:mask_limit => 0, :fill_value => -9999))
|
351
|
+
|
352
|
+
assert_equal(10, a.max)
|
353
|
+
assert_equal(10, a.max(:mask_limit => 0))
|
354
|
+
assert_equal(10, a.max(:mask_limit => 0, :fill_value => -9999))
|
355
|
+
|
356
|
+
assert_equal(55, a.sum)
|
357
|
+
assert_equal(55, a.sum(:mask_limit => 0))
|
358
|
+
assert_equal(55, a.sum(:mask_limit => 0, :fill_value => -9999))
|
359
|
+
|
360
|
+
assert_equal(5.5, a.mean)
|
361
|
+
assert_equal(5.5, a.mean(:mask_limit => 0))
|
362
|
+
assert_equal(5.5, a.mean(:mask_limit => 0, :fill_value => -9999))
|
363
|
+
|
364
|
+
# ---
|
365
|
+
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
366
|
+
a.mask = 0
|
367
|
+
a[0] = UNDEF
|
368
|
+
a[9] = UNDEF ### [_, 2, ..., 9,_]
|
369
|
+
|
370
|
+
assert_equal(2, a.min)
|
371
|
+
assert_equal(2, a.min(:mask_limit => 0))
|
372
|
+
assert_equal(UNDEF, a.min(:mask_limit => 1))
|
373
|
+
assert_equal(UNDEF, a.min(:mask_limit => 2))
|
374
|
+
assert_equal(2, a.min(:mask_limit => 3))
|
375
|
+
assert_equal(2, a.min(:mask_limit => 0, :fill_value => -9999))
|
376
|
+
assert_equal(-9999, a.min(:mask_limit => 1, :fill_value => -9999))
|
377
|
+
assert_equal(-9999, a.min(:mask_limit => 2, :fill_value => -9999))
|
378
|
+
assert_equal(2, a.min(:mask_limit => 3, :fill_value => -9999))
|
379
|
+
|
380
|
+
assert_equal(9, a.max)
|
381
|
+
assert_equal(9, a.max(:mask_limit => 0))
|
382
|
+
assert_equal(UNDEF, a.max(:mask_limit => 1))
|
383
|
+
assert_equal(UNDEF, a.max(:mask_limit => 2))
|
384
|
+
assert_equal(9, a.max(:mask_limit => 3))
|
385
|
+
assert_equal(9, a.max(:mask_limit => 0, :fill_value => -9999))
|
386
|
+
assert_equal(-9999, a.max(:mask_limit => 1, :fill_value => -9999))
|
387
|
+
assert_equal(-9999, a.max(:mask_limit => 2, :fill_value => -9999))
|
388
|
+
assert_equal(9, a.max(:mask_limit => 3, :fill_value => -9999))
|
389
|
+
|
390
|
+
assert_equal(44, a.sum)
|
391
|
+
assert_equal(44, a.sum(:mask_limit => 0))
|
392
|
+
assert_equal(UNDEF, a.sum(:mask_limit => 1))
|
393
|
+
assert_equal(UNDEF, a.sum(:mask_limit => 2))
|
394
|
+
assert_equal(44, a.sum(:mask_limit => 3))
|
395
|
+
assert_equal(44, a.sum(:mask_limit => 0, :fill_value => -9999))
|
396
|
+
assert_equal(-9999, a.sum(:mask_limit => 1, :fill_value => -9999))
|
397
|
+
assert_equal(-9999, a.sum(:mask_limit => 2, :fill_value => -9999))
|
398
|
+
assert_equal(44, a.sum(:mask_limit => 3, :fill_value => -9999))
|
399
|
+
|
400
|
+
assert_equal(5.5, a.mean)
|
401
|
+
assert_equal(5.5, a.mean(:mask_limit => 0))
|
402
|
+
assert_equal(UNDEF, a.mean(:mask_limit => 1))
|
403
|
+
assert_equal(UNDEF, a.mean(:mask_limit => 2))
|
404
|
+
assert_equal(5.5, a.mean(:mask_limit => 3))
|
405
|
+
assert_equal(5.5, a.mean(:mask_limit => 0, :fill_value => -9999))
|
406
|
+
assert_equal(-9999, a.mean(:mask_limit => 1, :fill_value => -9999))
|
407
|
+
assert_equal(-9999, a.mean(:mask_limit => 2, :fill_value => -9999))
|
408
|
+
assert_equal(5.5, a.mean(:mask_limit => 3, :fill_value => -9999))
|
409
|
+
|
410
|
+
end
|
411
|
+
|
412
|
+
def test_accumulate
|
413
|
+
# ---
|
414
|
+
a = CArray.uint8(256) { 1 }
|
415
|
+
|
416
|
+
assert_equal(0, a.accumulate)
|
417
|
+
assert_equal(0, a.accumulate(:mask_limit => 0))
|
418
|
+
assert_equal(0, a.accumulate(:mask_limit => 0, :fill_value => -9999))
|
419
|
+
|
420
|
+
# ---
|
421
|
+
a = CArray.uint8(256) { 1 }
|
422
|
+
a[0] = UNDEF
|
423
|
+
a[255] = UNDEF
|
424
|
+
|
425
|
+
assert_equal(254, a.accumulate())
|
426
|
+
assert_equal(254, a.accumulate(:mask_limit => 0))
|
427
|
+
assert_equal(UNDEF, a.accumulate(:mask_limit => 1))
|
428
|
+
assert_equal(UNDEF, a.accumulate(:mask_limit => 2))
|
429
|
+
assert_equal(254, a.accumulate(:mask_limit => 0, :fill_value => -9999))
|
430
|
+
assert_equal(-9999, a.accumulate(:mask_limit => 1, :fill_value => -9999))
|
431
|
+
assert_equal(-9999, a.accumulate(:mask_limit => 2, :fill_value => -9999))
|
432
|
+
end
|
433
|
+
|
434
|
+
def test_variance
|
435
|
+
# ---
|
436
|
+
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
437
|
+
|
438
|
+
assert_equal(true, (9.16666666666667 - a.variance()) < 0.000001 )
|
439
|
+
assert_equal(true, (9.16666666666667 - a.variance(:mask_limit=>0)) < 0.000001 )
|
440
|
+
assert_equal(true, (9.16666666666667 - a.variance(:mask_limit=>0, :fill_value=>-9999)) < 0.000001 )
|
441
|
+
|
442
|
+
# ---
|
443
|
+
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
444
|
+
a.mask = 0
|
445
|
+
a[0] = UNDEF
|
446
|
+
a[9] = UNDEF ### [_, 2, ..., 9,_]
|
447
|
+
|
448
|
+
assert_equal(6, a.variance())
|
449
|
+
assert_equal(6, a.variance(:mask_limit=>0))
|
450
|
+
assert_equal(UNDEF, a.variance(:mask_limit=>1))
|
451
|
+
assert_equal(UNDEF, a.variance(:mask_limit=>2))
|
452
|
+
assert_equal(6, a.variance(:mask_limit=>3))
|
453
|
+
assert_equal(6, a.variance(:mask_limit=>0, :fill_value=>-9999))
|
454
|
+
assert_equal(-9999, a.variance(:mask_limit=>1, :fill_value=>-9999))
|
455
|
+
assert_equal(-9999, a.variance(:mask_limit=>2, :fill_value=>-9999))
|
456
|
+
assert_equal(6, a.variance(:mask_limit=>3, :fill_value=>-9999))
|
457
|
+
|
458
|
+
end
|
459
|
+
|
460
|
+
def test_variancep
|
461
|
+
# ---
|
462
|
+
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
463
|
+
|
464
|
+
assert_equal(true, (8.25 - a.variancep()) < 0.000001 )
|
465
|
+
assert_equal(true, (8.25 - a.variancep(:mask_limit=>0)) < 0.000001 )
|
466
|
+
assert_equal(true, (8.25 - a.variancep(:mask_limit=>0, :fill_value=>-9999)) < 0.000001 )
|
467
|
+
|
468
|
+
# ---
|
469
|
+
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
470
|
+
a.mask = 0
|
471
|
+
a[0] = UNDEF
|
472
|
+
a[9] = UNDEF ### [_, 2, ..., 9,_]
|
473
|
+
|
474
|
+
assert_equal(true, (5.25 - a.variancep()) < 0.000001 )
|
475
|
+
assert_equal(true, (5.25 - a.variancep(:mask_limit=>0)) < 0.000001 )
|
476
|
+
assert_equal(UNDEF, a.variancep(:mask_limit=>1))
|
477
|
+
assert_equal(UNDEF, a.variancep(:mask_limit=>2))
|
478
|
+
assert_equal(true, (5.25 - a.variancep(:mask_limit=>3)) < 0.000001 )
|
479
|
+
assert_equal(true, (5.25 - a.variancep(:mask_limit=>0, :fill_value=>-9999)) < 0.000001 )
|
480
|
+
assert_equal(-9999, a.variancep(:mask_limit=>1, :fill_value=>-9999))
|
481
|
+
assert_equal(-9999, a.variancep(:mask_limit=>2, :fill_value=>-9999))
|
482
|
+
assert_equal(true, (5.25 - a.variancep(:mask_limit=>3, :fill_value=>-9999)) < 0.000001 )
|
483
|
+
end
|
484
|
+
|
485
|
+
def test_prod
|
486
|
+
# ---
|
487
|
+
a = CArray.int32(5).seq!(1) ### [1, 2, ..., 5]
|
488
|
+
|
489
|
+
assert_equal(120, a.prod())
|
490
|
+
assert_equal(120, a.prod(:mask_limit => 0))
|
491
|
+
assert_equal(120, a.prod(:mask_limit => 0, :fill_value => -9999))
|
492
|
+
|
493
|
+
# ---
|
494
|
+
a = CArray.int32(5).seq!(1) ### [1, 2, ..., 5]
|
495
|
+
a[0] = UNDEF
|
496
|
+
a[2] = UNDEF ### [0, 2, _, 4, 5]
|
497
|
+
|
498
|
+
assert_equal(40, a.prod())
|
499
|
+
assert_equal(40, a.prod(:mask_limit => 0))
|
500
|
+
assert_equal(UNDEF, a.prod(:mask_limit => 1))
|
501
|
+
assert_equal(UNDEF, a.prod(:mask_limit => 2))
|
502
|
+
assert_equal(40, a.prod(:mask_limit => 3))
|
503
|
+
assert_equal(40, a.prod(:mask_limit => 0, :fill_value => -9999))
|
504
|
+
assert_equal(-9999, a.prod(:mask_limit => 1, :fill_value => -9999))
|
505
|
+
assert_equal(-9999, a.prod(:mask_limit => 2, :fill_value => -9999))
|
506
|
+
assert_equal(40, a.prod(:mask_limit => 3, :fill_value => -9999))
|
507
|
+
end
|
508
|
+
|
509
|
+
def test_wsum
|
510
|
+
|
511
|
+
# ---
|
512
|
+
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
513
|
+
w = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
514
|
+
|
515
|
+
assert_equal(385, a.wsum(w))
|
516
|
+
assert_equal(385, a.wsum(w, 0))
|
517
|
+
assert_equal(385, a.wsum(w, 0, -9999))
|
518
|
+
|
519
|
+
# ---
|
520
|
+
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
521
|
+
w = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
522
|
+
a.mask = 0
|
523
|
+
w.mask = 0
|
524
|
+
a[0] = UNDEF ### [_, 2, ..., 9,10]
|
525
|
+
w[9] = UNDEF ### [1, 2, ..., 9,_]
|
526
|
+
|
527
|
+
# assert_equal(284, a.wsum(w))
|
528
|
+
# assert_equal(UNDEF, a.wsum(w, 0))
|
529
|
+
# assert_equal(UNDEF, a.wsum(w, 1))
|
530
|
+
# assert_equal(284, a.wsum(w, 2))
|
531
|
+
|
532
|
+
# assert_equal(-9999, a.wsum(w, 0, -9999))
|
533
|
+
# assert_equal(-9999, a.wsum(w, 1, -9999))
|
534
|
+
# assert_equal(284, a.wsum(w, 2, -9999))
|
535
|
+
|
536
|
+
end
|
537
|
+
|
538
|
+
def test_cumsum
|
539
|
+
# ---
|
540
|
+
a = CArray.int32(10).seq!(1)
|
541
|
+
a[2] = UNDEF
|
542
|
+
assert_equal(CA_DOUBLE([1, 3, 3, 7, 12, 18, 25, 33, 42, 52]),
|
543
|
+
a.cumsum())
|
544
|
+
assert_equal(CA_DOUBLE([1, 3, *([UNDEF]*8)]),
|
545
|
+
a.cumsum(0))
|
546
|
+
assert_equal(CA_DOUBLE([1, 3, *([-9999]*8)]),
|
547
|
+
a.cumsum(0, -9999))
|
548
|
+
assert_equal(CA_DOUBLE([1, 3, 3, 7, 12, 18, 25, 33, 42, 52]),
|
549
|
+
a.cumsum(1))
|
550
|
+
end
|
551
|
+
|
552
|
+
def test_cumprod
|
553
|
+
# ---
|
554
|
+
a = CArray.int32(5).seq!(1)
|
555
|
+
a[2] = UNDEF
|
556
|
+
assert_equal(CA_DOUBLE([1, 2, 2, 8, 40]),
|
557
|
+
a.cumprod())
|
558
|
+
assert_equal(CA_DOUBLE([1, 2, *([UNDEF]*3)]),
|
559
|
+
a.cumprod(0))
|
560
|
+
assert_equal(CA_DOUBLE([1, 2, *([-9999]*3)]),
|
561
|
+
a.cumprod(0, -9999))
|
562
|
+
assert_equal(CA_DOUBLE([1, 2, 2, 8, 40]),
|
563
|
+
a.cumprod(1))
|
564
|
+
end
|
565
|
+
|
566
|
+
def test_count_xxx
|
567
|
+
# TODO
|
568
|
+
end
|
569
|
+
|
570
|
+
def test_all_xxx?
|
571
|
+
# TODO
|
572
|
+
end
|
573
|
+
|
574
|
+
def test_any_xxx?
|
575
|
+
# TODO
|
576
|
+
end
|
577
|
+
|
578
|
+
end
|