carray 1.5.1 → 1.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (174) hide show
  1. checksums.yaml +4 -4
  2. data/{LICENSES → LICENSE} +0 -0
  3. data/NEWS.md +42 -0
  4. data/README.md +5 -5
  5. data/TODO.md +16 -0
  6. data/carray.gemspec +9 -5
  7. data/ext/ca_iter_block.c +3 -5
  8. data/ext/ca_iter_dimension.c +4 -5
  9. data/ext/ca_iter_window.c +2 -4
  10. data/ext/ca_obj_array.c +394 -124
  11. data/ext/ca_obj_bitarray.c +3 -5
  12. data/ext/ca_obj_bitfield.c +3 -5
  13. data/ext/ca_obj_block.c +6 -8
  14. data/ext/ca_obj_fake.c +3 -5
  15. data/ext/ca_obj_farray.c +3 -5
  16. data/ext/ca_obj_field.c +15 -17
  17. data/ext/ca_obj_grid.c +5 -6
  18. data/ext/ca_obj_mapping.c +2 -4
  19. data/ext/ca_obj_object.c +3 -5
  20. data/ext/ca_obj_reduce.c +2 -4
  21. data/ext/ca_obj_refer.c +5 -7
  22. data/ext/ca_obj_repeat.c +2 -4
  23. data/ext/ca_obj_select.c +2 -4
  24. data/ext/ca_obj_shift.c +3 -5
  25. data/ext/ca_obj_transpose.c +3 -5
  26. data/ext/ca_obj_unbound_repeat.c +58 -81
  27. data/ext/ca_obj_window.c +7 -9
  28. data/ext/carray.h +13 -8
  29. data/ext/carray_access.c +111 -18
  30. data/ext/carray_attribute.c +136 -197
  31. data/ext/carray_call_cfunc.c +1 -3
  32. data/ext/carray_cast.c +344 -143
  33. data/ext/carray_cast_func.rb +1 -2
  34. data/ext/carray_class.c +28 -36
  35. data/ext/carray_conversion.c +49 -59
  36. data/ext/carray_copy.c +16 -32
  37. data/ext/carray_core.c +51 -44
  38. data/ext/carray_element.c +25 -44
  39. data/ext/carray_generate.c +71 -50
  40. data/ext/carray_iterator.c +13 -15
  41. data/ext/carray_loop.c +53 -82
  42. data/ext/carray_mask.c +87 -117
  43. data/ext/carray_math.rb +8 -10
  44. data/ext/carray_mathfunc.c +1 -3
  45. data/ext/carray_numeric.c +19 -3
  46. data/ext/carray_operator.c +45 -32
  47. data/ext/carray_order.c +72 -65
  48. data/ext/carray_sort_addr.c +14 -21
  49. data/ext/carray_stat.c +1 -3
  50. data/ext/carray_stat_proc.rb +2 -4
  51. data/ext/carray_test.c +28 -30
  52. data/ext/carray_undef.c +1 -3
  53. data/ext/carray_utils.c +12 -4
  54. data/ext/extconf.rb +1 -1
  55. data/ext/mkmath.rb +1 -1
  56. data/ext/ruby_carray.c +11 -6
  57. data/ext/ruby_ccomplex.c +1 -3
  58. data/ext/ruby_float_func.c +1 -3
  59. data/ext/version.h +5 -7
  60. data/lib/carray.rb +2 -0
  61. data/lib/carray/autoload/autoload_gem_numo_narray.rb +6 -6
  62. data/lib/carray/broadcast.rb +45 -0
  63. data/lib/carray/construct.rb +21 -4
  64. data/lib/carray/iterator.rb +1 -0
  65. data/lib/carray/ordering.rb +28 -2
  66. data/spec/Classes/CABitfield_spec.rb +58 -0
  67. data/spec/Classes/CABlockIterator_spec.rb +114 -0
  68. data/spec/Classes/CABlock_spec.rb +205 -0
  69. data/spec/Classes/CAField_spec.rb +39 -0
  70. data/spec/Classes/CAGrid_spec.rb +75 -0
  71. data/spec/Classes/CAMap_spec.rb +0 -0
  72. data/{test/test_CAMapping.rb → spec/Classes/CAMapping_spec.rb} +35 -36
  73. data/spec/Classes/CAObject_attribute_spec.rb +33 -0
  74. data/spec/Classes/CAObject_spec.rb +33 -0
  75. data/spec/Classes/CARefer_spec.rb +93 -0
  76. data/spec/Classes/CARepeat_spec.rb +65 -0
  77. data/spec/Classes/CASelect_spec.rb +22 -0
  78. data/spec/Classes/CAShift_spec.rb +16 -0
  79. data/spec/Classes/CAStruct_spec.rb +71 -0
  80. data/{test/test_CATranspose.rb → spec/Classes/CATranspose_spec.rb} +20 -21
  81. data/spec/Classes/CAUnboudRepeat_spec.rb +78 -0
  82. data/spec/Classes/CAWindow_spec.rb +54 -0
  83. data/spec/Classes/CAWrap_spec.rb +8 -0
  84. data/{test/test_CArray.rb → spec/Classes/CArray_spec.rb} +48 -92
  85. data/spec/Classes/CScalar_spec.rb +55 -0
  86. data/spec/Features/feature_130_spec.rb +19 -0
  87. data/spec/Features/feature_attributes_spec.rb +280 -0
  88. data/spec/Features/feature_boolean_spec.rb +97 -0
  89. data/spec/Features/feature_broadcast.rb +100 -0
  90. data/spec/Features/feature_cast_function.rb +19 -0
  91. data/spec/Features/feature_cast_spec.rb +33 -0
  92. data/spec/Features/feature_class_spec.rb +84 -0
  93. data/spec/Features/feature_complex_spec.rb +42 -0
  94. data/{test/test_composite.rb → spec/Features/feature_composite_spec.rb} +17 -18
  95. data/spec/Features/feature_convert_spec.rb +46 -0
  96. data/spec/Features/feature_copy_spec.rb +123 -0
  97. data/spec/Features/feature_creation_spec.rb +84 -0
  98. data/spec/Features/feature_element_spec.rb +144 -0
  99. data/spec/Features/feature_extream_spec.rb +54 -0
  100. data/spec/Features/feature_generate_spec.rb +74 -0
  101. data/spec/Features/feature_index_spec.rb +69 -0
  102. data/spec/Features/feature_mask_spec.rb +574 -0
  103. data/spec/Features/feature_math_spec.rb +97 -0
  104. data/spec/Features/feature_order_spec.rb +146 -0
  105. data/spec/Features/feature_ref_store_spec.rb +209 -0
  106. data/spec/Features/feature_serialization_spec.rb +125 -0
  107. data/spec/Features/feature_stat_spec.rb +397 -0
  108. data/spec/Features/feature_virtual_spec.rb +48 -0
  109. data/spec/Features/method_eq_spec.rb +81 -0
  110. data/spec/Features/method_is_nan_spec.rb +12 -0
  111. data/spec/Features/method_map_spec.rb +54 -0
  112. data/spec/Features/method_max_with.rb +20 -0
  113. data/spec/Features/method_min_with.rb +19 -0
  114. data/spec/Features/method_ne_spec.rb +18 -0
  115. data/spec/Features/method_project_spec.rb +188 -0
  116. data/spec/Features/method_ref_spec.rb +27 -0
  117. data/spec/Features/method_round_spec.rb +11 -0
  118. data/spec/Features/method_s_linspace_spec.rb +48 -0
  119. data/spec/Features/method_s_span_spec.rb +14 -0
  120. data/spec/Features/method_seq_spec.rb +47 -0
  121. data/spec/Features/method_sort_with.rb +43 -0
  122. data/spec/Features/method_sorted_with.rb +29 -0
  123. data/spec/Features/method_span_spec.rb +42 -0
  124. data/spec/Features/method_wrap_readonly_spec.rb +43 -0
  125. data/{test → spec/UnitTest}/test_CAVirtual.rb +0 -0
  126. data/spec/spec_all.rb +0 -1
  127. data/utils/convert_test.rb +73 -0
  128. data/utils/{extract_rdoc.rb → extract_yard.rb} +7 -12
  129. metadata +77 -60
  130. data/spec/CABlockIterator/CABlockIterator_spec.rb +0 -113
  131. data/spec/CArray/bug/store_spec.rb +0 -27
  132. data/spec/CArray/index/repeat_spec.rb +0 -10
  133. data/spec/CArray/method/eq_spec.rb +0 -80
  134. data/spec/CArray/method/is_nan_spec.rb +0 -12
  135. data/spec/CArray/method/ne_spec.rb +0 -18
  136. data/spec/CArray/method/round_spec.rb +0 -11
  137. data/spec/CArray/object/_attribute_spec.rb +0 -32
  138. data/spec/CArray/object/s_new_spec.rb +0 -31
  139. data/spec/CArray/serialize/Serialization_spec.rb +0 -89
  140. data/test/test_130.rb +0 -23
  141. data/test/test_ALL.rb +0 -49
  142. data/test/test_CABitfield.rb +0 -59
  143. data/test/test_CABlock.rb +0 -208
  144. data/test/test_CAField.rb +0 -40
  145. data/test/test_CAGrid.rb +0 -76
  146. data/test/test_CAMmap.rb +0 -11
  147. data/test/test_CARefer.rb +0 -94
  148. data/test/test_CARepeat.rb +0 -66
  149. data/test/test_CASelect.rb +0 -23
  150. data/test/test_CAShift.rb +0 -17
  151. data/test/test_CAWindow.rb +0 -55
  152. data/test/test_CAWrap.rb +0 -9
  153. data/test/test_CComplex.rb +0 -83
  154. data/test/test_CScalar.rb +0 -91
  155. data/test/test_attribute.rb +0 -281
  156. data/test/test_block_iterator.rb +0 -17
  157. data/test/test_boolean.rb +0 -99
  158. data/test/test_cast.rb +0 -33
  159. data/test/test_class.rb +0 -85
  160. data/test/test_complex.rb +0 -43
  161. data/test/test_convert.rb +0 -79
  162. data/test/test_copy.rb +0 -141
  163. data/test/test_creation.rb +0 -85
  164. data/test/test_element.rb +0 -146
  165. data/test/test_extream.rb +0 -55
  166. data/test/test_generate.rb +0 -75
  167. data/test/test_index.rb +0 -71
  168. data/test/test_mask.rb +0 -578
  169. data/test/test_math.rb +0 -98
  170. data/test/test_order.rb +0 -147
  171. data/test/test_ref_store.rb +0 -211
  172. data/test/test_stat.rb +0 -406
  173. data/test/test_struct.rb +0 -72
  174. data/test/test_virtual.rb +0 -49
@@ -0,0 +1,84 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayCreation " do
6
+
7
+ example "s_new_uint8" do
8
+ # ---
9
+ ca = CArray.new(CA_UINT8, [3, 2, 1])
10
+ is_asserted_by { ca.class == CArray }
11
+ is_asserted_by { CA_UINT8 == ca.data_type }
12
+ is_asserted_by { [3, 2, 1] == ca.dim }
13
+
14
+ # ---
15
+ ca = CArray.new(:uint8, [3, 2, 1])
16
+ is_asserted_by { ca.class == CArray }
17
+ is_asserted_by { CA_UINT8 == ca.data_type }
18
+ is_asserted_by { [3, 2, 1] == ca.dim }
19
+
20
+ # ---
21
+ ca = CArray.uint8(3, 2, 1)
22
+ is_asserted_by { ca.class == CArray }
23
+ is_asserted_by { CA_UINT8 == ca.data_type }
24
+ is_asserted_by { [3, 2, 1] == ca.dim }
25
+ end
26
+
27
+ example "s_new_fixlen" do
28
+ # ---
29
+ ca = CArray.new(CA_FIXLEN, [3, 2, 1], :bytes=>10)
30
+ is_asserted_by { ca.class == CArray }
31
+ is_asserted_by { CA_FIXLEN == ca.data_type }
32
+ is_asserted_by { 10 == ca.bytes }
33
+ is_asserted_by { [3, 2, 1] == ca.dim }
34
+
35
+ # ---
36
+ ca = CArray.new(:fixlen, [3, 2, 1], :bytes=>10)
37
+ is_asserted_by { ca.class == CArray }
38
+ is_asserted_by { CA_FIXLEN == ca.data_type }
39
+ is_asserted_by { 10 == ca.bytes }
40
+ is_asserted_by { [3, 2, 1] == ca.dim }
41
+
42
+ # ---
43
+ ca = CArray.fixlen(3, 2, 1, :bytes=>10)
44
+ is_asserted_by { ca.class == CArray }
45
+ is_asserted_by { CA_FIXLEN == ca.data_type }
46
+ is_asserted_by { 10 == ca.bytes }
47
+ is_asserted_by { [3, 2, 1] == ca.dim }
48
+ end
49
+
50
+ example "s_new_various_types" do
51
+ # ---
52
+ data_type_list = [
53
+ CA_BOOLEAN,
54
+ CA_UINT8, CA_INT8,
55
+ CA_UINT16, CA_INT16,
56
+ CA_UINT32, CA_INT32,
57
+ CA_FLOAT32, CA_FLOAT64,
58
+ CA_OBJECT
59
+ ]
60
+ data_type_list.each do |type|
61
+ ca = CArray.new(type, [3, 2, 1])
62
+ is_asserted_by { ca.class == CArray }
63
+ is_asserted_by { type == ca.data_type }
64
+ end
65
+
66
+ # ---
67
+ data_type_name_list = [
68
+ "boolean",
69
+ "uint8", "int8",
70
+ "uint16", "int16",
71
+ "uint32", "int32",
72
+ "float32", "float64",
73
+ "object"
74
+ ]
75
+ data_type_name_list.each do |type|
76
+ ca = CArray.send(type, 3, 2, 1)
77
+ is_asserted_by { ca.class == CArray }
78
+ is_asserted_by { type == ca.data_type_name }
79
+ end
80
+
81
+ end
82
+
83
+
84
+ end
@@ -0,0 +1,144 @@
1
+ require 'carray'
2
+ require 'rspec-power_assert'
3
+
4
+ describe "Feature: Element" do
5
+
6
+ example "set_unset" do
7
+ #
8
+ a = CArray.boolean(3,3) {0}
9
+ a.set(1,1)
10
+ is_asserted_by { CA_BOOLEAN([[0, 0, 0], [0, 1, 0], [0, 0, 0]]) == a }
11
+
12
+ #
13
+ a = CArray.boolean(3,3) {0}
14
+ a.set(4)
15
+ is_asserted_by { CA_BOOLEAN([[0, 0, 0], [0, 1, 0], [0, 0, 0]]) == a }
16
+
17
+ #
18
+ a = CArray.boolean(3,3) {1}
19
+ a.unset(1,1)
20
+ is_asserted_by { CA_BOOLEAN([[1, 1, 1], [1, 0, 1], [1, 1, 1]]) == a }
21
+
22
+ #
23
+ a = CArray.boolean(3,3) {1}
24
+ a.unset(4)
25
+ is_asserted_by { CA_BOOLEAN([[1, 1, 1], [1, 0, 1], [1, 1, 1]]) == a }
26
+ end
27
+
28
+ example "elem_swap" do
29
+ #
30
+ a = CArray.int(3,3).seq!
31
+ a.elem_swap([1,1], [-1,-1])
32
+ is_asserted_by { 8 == a[1, 1] }
33
+ is_asserted_by { 4 == a[-1, -1] }
34
+
35
+ #
36
+ a = CArray.int(3,3).seq!
37
+ a[1,1] = UNDEF
38
+ a.elem_swap([1,1], [-1,-1])
39
+ is_asserted_by { 8 == a[1, 1] }
40
+ is_asserted_by { UNDEF == a[-1, -1] }
41
+
42
+ #
43
+ a = CArray.int(3,3).seq!
44
+ a.elem_swap(0, -1)
45
+ is_asserted_by { 8 == a[0, 0] }
46
+ is_asserted_by { 0 == a[-1, -1] }
47
+
48
+ #
49
+ a = CArray.int(3,3).seq!
50
+ a[0,0] = UNDEF
51
+ a.elem_swap(0, -1)
52
+ is_asserted_by { 8 == a[0, 0] }
53
+ is_asserted_by { UNDEF == a[-1, -1] }
54
+
55
+ end
56
+
57
+ example "elem_copy" do
58
+ #
59
+ a = CArray.int(3,3).seq!
60
+ a.elem_copy([1,1], [-1,-1])
61
+ is_asserted_by { 4 == a[1, 1] }
62
+ is_asserted_by { 4 == a[-1, -1] }
63
+
64
+ #
65
+ a = CArray.int(3,3).seq!
66
+ a[1,1] = UNDEF
67
+ a.elem_copy([1,1], [-1,-1])
68
+ is_asserted_by { UNDEF == a[1, 1] }
69
+ is_asserted_by { UNDEF == a[-1, -1] }
70
+
71
+ #
72
+ a = CArray.int(3,3).seq!
73
+ a.elem_copy(0, -1)
74
+ is_asserted_by { 0 == a[0, 0] }
75
+ is_asserted_by { 0 == a[-1, -1] }
76
+
77
+ #
78
+ a = CArray.int(3,3).seq!
79
+ a[0,0] = UNDEF
80
+ a.elem_copy(0, -1)
81
+ is_asserted_by { UNDEF == a[0, 0] }
82
+ is_asserted_by { UNDEF == a[-1, -1] }
83
+
84
+ end
85
+
86
+ example "elem_fetch" do
87
+ #
88
+ a = CArray.int(3,3).seq!
89
+ is_asserted_by { 4 == a.elem_fetch([1, 1]) }
90
+ a[1,1] = UNDEF
91
+ is_asserted_by { UNDEF == a.elem_fetch([1, 1]) }
92
+
93
+ #
94
+ a = CArray.int(3,3).seq!
95
+ is_asserted_by { 4 == a.elem_fetch(4) }
96
+ a[1,1] = UNDEF
97
+ is_asserted_by { UNDEF == a.elem_fetch(4) }
98
+ end
99
+
100
+ example "elem_store" do
101
+ #
102
+ a = CArray.int(3,3).seq!
103
+ a.elem_store([1,1], -4)
104
+ is_asserted_by { (-4) == a.elem_fetch([1, 1]) }
105
+ a.elem_store([1,1], UNDEF)
106
+ is_asserted_by { UNDEF == a.elem_fetch([1, 1]) }
107
+
108
+ #
109
+ a = CArray.int(3,3).seq!
110
+ a.elem_store(4, -4)
111
+ is_asserted_by { (-4) == a.elem_fetch(4) }
112
+ a.elem_store(4, UNDEF)
113
+ is_asserted_by { UNDEF == a.elem_fetch(4) }
114
+ end
115
+
116
+ example "elem_incr_decr" do
117
+ #
118
+ a = CArray.int(3,3).seq!
119
+ a.elem_incr([1,1])
120
+ is_asserted_by { 5 == a.elem_fetch([1, 1]) }
121
+ a.elem_decr([1,1])
122
+ is_asserted_by { 4 == a.elem_fetch([1, 1]) }
123
+
124
+ #
125
+ a = CArray.int(3,3).seq!
126
+ a.elem_incr(4)
127
+ is_asserted_by { 5 == a.elem_fetch(4) }
128
+ a.elem_decr(4)
129
+ is_asserted_by { 4 == a.elem_fetch(4) }
130
+ end
131
+
132
+ example "elem_incr_255" do
133
+ #
134
+ a = CArray.uint8(1) {255}
135
+ a.elem_incr(0)
136
+ is_asserted_by { 0 == a.elem_fetch(0) }
137
+
138
+ #
139
+ a = CArray.int8(1) {127}
140
+ a.elem_incr(0)
141
+ is_asserted_by { (-128) == a.elem_fetch(0) }
142
+ end
143
+
144
+ end
@@ -0,0 +1,54 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayExtream " do
6
+
7
+ example "zero_length_array" do
8
+ # ---
9
+ a = CArray.int(0)
10
+ is_asserted_by { 1 == a.rank }
11
+ is_asserted_by { 0 == a.elements }
12
+ is_asserted_by { [0] == a.dim }
13
+ is_asserted_by { 0 == a.dim0 }
14
+
15
+ # ---
16
+ a = CArray.int(0, 3)
17
+ is_asserted_by { 2 == a.rank }
18
+ is_asserted_by { 0 == a.elements }
19
+ is_asserted_by { [0, 3] == a.dim }
20
+ is_asserted_by { 0 == a.dim0 }
21
+ is_asserted_by { 3 == a.dim1 }
22
+
23
+ # ---
24
+ a = CArray.int(3, 0)
25
+ is_asserted_by { 2 == a.rank }
26
+ is_asserted_by { 0 == a.elements }
27
+ is_asserted_by { [3, 0] == a.dim }
28
+ is_asserted_by { 3 == a.dim0 }
29
+ is_asserted_by { 0 == a.dim1 }
30
+ end
31
+
32
+ example "zero_length_fixlen" do
33
+ # ---
34
+ expect { CArray.new(CA_FIXLEN, [3,3], :bytes => 0) }.not_to raise_error()
35
+ expect { CArray.new(CA_FIXLEN, [3,3], :bytes => -1) }.to raise_error(RuntimeError)
36
+ end
37
+
38
+ example "large_rank_array" do
39
+ # ---
40
+ dim = [2] * (CA_RANK_MAX)
41
+ is_asserted_by { CArray.int8(*dim).class == CArray }
42
+
43
+ # ---
44
+ dim = [2] * (CA_RANK_MAX+1)
45
+ expect { CArray.int8(*dim) }.to raise_error(RuntimeError)
46
+ end
47
+
48
+ example "negative_dimension_size" do
49
+ # ---
50
+ expect { CArray.int8(-1) }.to raise_error(RuntimeError)
51
+ expect { CArray.int8(-1, -1) }.to raise_error(RuntimeError)
52
+ end
53
+
54
+ end
@@ -0,0 +1,74 @@
1
+
2
+ require 'carray'
3
+ require "rspec-power_assert"
4
+
5
+ describe "TestCArrayGenerate " do
6
+
7
+ example "swap_bytes" do
8
+ #
9
+ a = CArray.int16(3,3) { 0x1234 }
10
+ b = CArray.int16(3,3) { 0x3412 }
11
+ is_asserted_by { b == a.swap_bytes }
12
+ is_asserted_by { a == b.swap_bytes }
13
+ is_asserted_by { a == a.swap_bytes.swap_bytes }
14
+
15
+ #
16
+ a = CArray.int32(3,3) { 0x12345678 }
17
+ b = CArray.int32(3,3) { 0x78563412 }
18
+ is_asserted_by { b == a.swap_bytes }
19
+ is_asserted_by { a == b.swap_bytes }
20
+ is_asserted_by { a == a.swap_bytes.swap_bytes }
21
+
22
+ #
23
+ if CArray::HAVE_COMPLEX
24
+ c = CArray.int32(1) { 0x12345678 }
25
+ x = c.refer(CA_FLOAT32, [1])[0]
26
+ y = c.swap_bytes.refer(CA_FLOAT32, [1])[0]
27
+ a = CArray.complex(3,3) { x + y*CI }
28
+ b = CArray.complex(3,3) { y + x*CI }
29
+ is_asserted_by { b == a.swap_bytes }
30
+ is_asserted_by { a == b.swap_bytes }
31
+ is_asserted_by { a == a.swap_bytes.swap_bytes }
32
+ end
33
+ end
34
+
35
+ example "seq" do
36
+ # ---
37
+ a = CArray.object(3).seq!
38
+ is_asserted_by { CA_OBJECT([0, 1, 2]) == a }
39
+
40
+ # ---
41
+ a = CArray.object(3).seq!(1)
42
+ is_asserted_by { CA_OBJECT([1, 2, 3]) == a }
43
+
44
+ # ---
45
+ a = CArray.object(3).seq!(1,2)
46
+ is_asserted_by { CA_OBJECT([1, 3, 5]) == a }
47
+
48
+ # ---
49
+ a = CArray.object(3).seq!(3,-1)
50
+ is_asserted_by { CA_OBJECT([3, 2, 1]) == a }
51
+
52
+ # ---
53
+ a = CArray.object(3).seq!("a", "a")
54
+ is_asserted_by { CA_OBJECT(["a", "aa", "aaa"]) == a }
55
+
56
+ # ---
57
+ a = CArray.object(3).seq!("a", :succ)
58
+ is_asserted_by { CA_OBJECT(["a", "b", "c"]) == a }
59
+
60
+ # ---
61
+ a = CArray.object(3).seq!("a", :succ) { |x| "@" + x }
62
+ is_asserted_by { CA_OBJECT(["@a", "@b", "@c"]) == a }
63
+
64
+ # ---
65
+ a = CArray.object(3).seq!("a", :succ)
66
+ is_asserted_by { CA_OBJECT(["@a", "@b", "@c"]) == (CA_OBJECT("@") + a) }
67
+
68
+ # ---
69
+ a = CArray.object(3).seq!([], [nil])
70
+ is_asserted_by { CA_OBJECT([[], [nil], [nil, nil]]) == a }
71
+ end
72
+
73
+
74
+ end
@@ -0,0 +1,69 @@
1
+ require 'carray'
2
+ require 'rspec-power_assert'
3
+
4
+ describe "Feature: Indexing" do
5
+
6
+ example "index" do
7
+ a = CArray.int(3,3).seq!
8
+ expect { a[0, 0, 0] }.to raise_error(IndexError)
9
+ expect { a[[0,1,1,2], 0] }.to raise_error(IndexError)
10
+ expect { a[[0,4], 0] }.to raise_error(IndexError)
11
+ expect { a[[0,3,2], 0] }.to raise_error(IndexError)
12
+ expect { a[:abcdefg, 0] }.to raise_error(NoMethodError)
13
+ expect { a[0, :abcdefg] }.to raise_error(IndexError)
14
+ end
15
+
16
+ example "rubber_dim" do
17
+ a = CArray.int(3,3,3,3,3).seq!
18
+
19
+ is_asserted_by { a[false] == a[nil, nil, nil, nil, nil] }
20
+
21
+ is_asserted_by { a[0,false] == a[0, nil, nil, nil, nil] }
22
+ is_asserted_by { a[false,0] == a[nil, nil, nil, nil, 0] }
23
+ is_asserted_by { a[0,false,0] == a[0, nil, nil, nil, 0] }
24
+
25
+ is_asserted_by { a[0..1,false] == a[0..1, nil, nil, nil, nil] }
26
+ is_asserted_by { a[false,0..1] == a[nil, nil, nil, nil, 0..1] }
27
+ is_asserted_by { a[0..1,false,0..1] == a[0..1, nil, nil, nil, 0..1] }
28
+
29
+ is_asserted_by { a[nil,false] == a[nil, nil, nil, nil, nil] }
30
+ is_asserted_by { a[false,nil] == a[nil, nil, nil, nil, nil] }
31
+ is_asserted_by { a[nil,false,nil] == a[nil, nil, nil, nil, nil] }
32
+
33
+ expect { a[0,0,0,0,0,0,false] }.to raise_error(IndexError)
34
+
35
+ end
36
+
37
+
38
+ example "scan_index" do
39
+ info = CArray.scan_index([3,3],[])
40
+ is_asserted_by { [info.type, info.index] == [CA_REG_ALL, []] }
41
+ info = CArray.scan_index([3,3],[1])
42
+ is_asserted_by { [info.type, info.index] == [CA_REG_ADDRESS, [1]] }
43
+ info = CArray.scan_index([3,3],[1..2])
44
+ is_asserted_by { [info.type, info.index] == [CA_REG_ADDRESS_COMPLEX, [[1,2,1]]] }
45
+ info = CArray.scan_index([3,3],[1,1])
46
+ is_asserted_by { [info.type, info.index] == [CA_REG_POINT, [1,1]] }
47
+ info = CArray.scan_index([3,3],[1,nil])
48
+ is_asserted_by { [info.type, info.index] == [CA_REG_BLOCK, [1,[0,3,1]]] }
49
+ a = CArray.int(3,3).seq!
50
+ i = CArray.int(3).seq!
51
+ info = CArray.scan_index([3,3],[a.eq(4)])
52
+ is_asserted_by { [info.type, info.index] == [CA_REG_SELECT, []] }
53
+ info = CArray.scan_index([3,3],[a])
54
+ is_asserted_by { [info.type, info.index] == [CA_REG_MAPPING, []] }
55
+ info = CArray.scan_index([3,3],[i,i])
56
+ is_asserted_by { [info.type, info.index] == [CA_REG_GRID, []] }
57
+ info = CArray.scan_index([3,3],[:%, :%, 2])
58
+ is_asserted_by { [info.type, info.index] == [CA_REG_REPEAT, []] }
59
+ info = CArray.scan_index([3,3],[nil, nil, :*])
60
+ is_asserted_by { [info.type, info.index] == [CA_REG_UNBOUND_REPEAT, []] }
61
+ end
62
+
63
+ example "addr2index" do
64
+ a = CArray.int(3,3,3)
65
+ is_asserted_by { [1,1,1] == a.addr2index(13) }
66
+ is_asserted_by { 13 == a.index2addr(1,1,1) }
67
+ end
68
+
69
+ end
@@ -0,0 +1,574 @@
1
+ require 'carray'
2
+ require 'rspec-power_assert'
3
+
4
+ describe "Feature: Masking" do
5
+
6
+ example "basic_features" do
7
+
8
+ # ---
9
+ a = CArray.int32(3,3).seq!
10
+ is_asserted_by { false == a.has_mask? } ### mask array is not created
11
+ is_asserted_by { CA_INT32([[0,1,2],
12
+ [3,4,5],
13
+ [6,7,8]]) == a.value }
14
+ is_asserted_by { 0 == a.mask } ### mask array is not created
15
+ is_asserted_by { CA_BOOLEAN([[0,0,0],
16
+ [0,0,0],
17
+ [0,0,0]]) == a.is_masked }
18
+ is_asserted_by { CA_BOOLEAN([[1,1,1],
19
+ [1,1,1],
20
+ [1,1,1]]) == a.is_not_masked }
21
+ is_asserted_by { 0 == a.count_masked }
22
+ is_asserted_by { 9 == a.count_not_masked }
23
+
24
+ # ---
25
+ a = CArray.int32(3,3).seq!
26
+ a.mask = 0
27
+ is_asserted_by { true == a.has_mask? } ### mask array is created
28
+ is_asserted_by { CA_INT32([[0,1,2],
29
+ [3,4,5],
30
+ [6,7,8]]) == a.value }
31
+ is_asserted_by { CA_BOOLEAN([[0,0,0],
32
+ [0,0,0],
33
+ [0,0,0]]) == a.mask } ### mask array is created
34
+ is_asserted_by { CA_BOOLEAN([[0,0,0],
35
+ [0,0,0],
36
+ [0,0,0]]) == a.is_masked }
37
+ is_asserted_by { CA_BOOLEAN([[1,1,1],
38
+ [1,1,1],
39
+ [1,1,1]]) == a.is_not_masked }
40
+ is_asserted_by { 0 == a.count_masked }
41
+ is_asserted_by { 9 == a.count_not_masked }
42
+
43
+ # ---
44
+ a = CArray.int32(3,3).seq!
45
+ a.mask = CA_BOOLEAN([[0,1,0],
46
+ [1,1,1],
47
+ [0,1,0]])
48
+ is_asserted_by { true == a.has_mask? }
49
+ is_asserted_by { CA_INT32([[0,1,2],
50
+ [3,4,5],
51
+ [6,7,8]]) == a.value }
52
+ is_asserted_by { CA_BOOLEAN([[0,1,0],
53
+ [1,1,1],
54
+ [0,1,0]]) == a.mask }
55
+ is_asserted_by { CA_BOOLEAN([[0,1,0],
56
+ [1,1,1],
57
+ [0,1,0]]) == a.is_masked }
58
+ is_asserted_by { CA_BOOLEAN([[1,0,1],
59
+ [0,0,0],
60
+ [1,0,1]]) == a.is_not_masked }
61
+ is_asserted_by { 5 == a.count_masked }
62
+ is_asserted_by { 4 == a.count_not_masked }
63
+ end
64
+
65
+ example "equality_when_mask_is_added" do
66
+ # ---
67
+ a = CArray.int32(3,3).seq!
68
+ a.mask = CA_BOOLEAN([[0,1,0],
69
+ [1,1,1],
70
+ [0,1,0]])
71
+ b = CArray.int32(3,3).seq!
72
+ b.mask = CA_BOOLEAN([[0,1,0],
73
+ [1,1,1],
74
+ [0,1,0]])
75
+ is_asserted_by { a.mask == b.mask }
76
+ is_asserted_by { a.is_masked == b.is_masked }
77
+ is_asserted_by { a == b }
78
+
79
+ # ---
80
+ a = CArray.int32(3,3).seq!
81
+ a.mask = CA_BOOLEAN([[0,1,0],
82
+ [0,1,0],
83
+ [0,1,0]])
84
+ b = CArray.int32(3,3).seq!
85
+ b.mask = CA_BOOLEAN([[0,0,0],
86
+ [1,1,1],
87
+ [0,0,0]])
88
+ is_asserted_by { a.mask != b.mask }
89
+ is_asserted_by { a.is_masked != b.is_masked }
90
+ is_asserted_by { a != b }
91
+
92
+ # ---
93
+ a = CArray.int32(3,3).seq!
94
+ b = CArray.int32(3,3).seq!
95
+ b.mask = CA_BOOLEAN([[0,0,0],
96
+ [0,0,0],
97
+ [0,0,0]])
98
+ is_asserted_by { a.mask != b.mask }
99
+ is_asserted_by { a.is_masked == b.is_masked }
100
+ is_asserted_by { a == b }
101
+
102
+ # ---
103
+ a = CArray.int32(3,3).seq!
104
+ a.mask = CA_BOOLEAN([[0,0,0],
105
+ [1,1,1],
106
+ [0,0,0]])
107
+ b = CArray.int32(3,3).seq!
108
+ b.mask = CA_BOOLEAN([[0,0,0],
109
+ [1,1,1],
110
+ [0,0,0]])
111
+ a.value[1,nil] = 1
112
+ b.value[1,nil] = -1
113
+ is_asserted_by { a.value != b.value }
114
+ is_asserted_by { a.mask == b.mask }
115
+ is_asserted_by { a.is_masked == b.is_masked }
116
+ is_asserted_by { a == b }
117
+ end
118
+
119
+ example "has_mask?" do
120
+ # test_basic_feature
121
+ end
122
+
123
+ example "any_masked?" do
124
+ #
125
+ a = CA_INT(0..2)
126
+ a.mask = 0
127
+ is_asserted_by { false == a.any_masked? }
128
+ a[1] = UNDEF
129
+ is_asserted_by { true == a.any_masked? }
130
+ a.unmask
131
+ is_asserted_by { false == a.any_masked? }
132
+ end
133
+
134
+ example "value" do
135
+ #
136
+ a = CArray.int32(3,3)
137
+ a.mask = 0
138
+ ### can't set mask to value array
139
+ expect { a.value.mask = 1 }.to raise_error(RuntimeError)
140
+ end
141
+
142
+ example "mask" do
143
+ # test_basic_feature
144
+ a = CArray.int32(3,3)
145
+ a.mask = 0
146
+ ### can't set mask to mask array
147
+ expect { a.mask.mask = 1 }.to raise_error(RuntimeError)
148
+ end
149
+
150
+ example "mask=" do
151
+ # ---
152
+ a = CArray.int32(3,3).seq!
153
+ a.mask = CA_BOOLEAN([[0,1,0],
154
+ [1,1,1],
155
+ [0,1,0]]) ### Though the mask array can hold the value
156
+ ### other than 0 or 1, the value 0 means
157
+ ### masked and otherwise means not-masked.
158
+ is_asserted_by { CA_BOOLEAN([[0,1,0],
159
+ [1,1,1],
160
+ [0,1,0]]) == a.mask }
161
+ is_asserted_by { CA_BOOLEAN([[0,1,0],
162
+ [1,1,1],
163
+ [0,1,0]]) == a.is_masked }
164
+ is_asserted_by { CA_BOOLEAN([[1,0,1],
165
+ [0,0,0],
166
+ [1,0,1]]) == a.is_not_masked }
167
+ is_asserted_by { 5 == a.count_masked }
168
+ is_asserted_by { 4 == a.count_not_masked }
169
+
170
+ # ---
171
+ a = CArray.int32(3,3).seq!
172
+ m = CA_BOOLEAN([[0,1,0],
173
+ [0,1,0],
174
+ [0,1,0]])
175
+ m.mask = CA_BOOLEAN([[0,0,0],
176
+ [1,1,1],
177
+ [0,0,0]])
178
+ a.mask = m ### When masked array is set as mask,
179
+ ### masked position is also set as
180
+ ### masked elements.
181
+ is_asserted_by { m != a.mask }
182
+ is_asserted_by { CA_BOOLEAN([[0,1,0],
183
+ [1,1,1],
184
+ [0,1,0]]) == a.mask }
185
+ end
186
+
187
+ example "is_masked" do
188
+ # test_basic_features
189
+ end
190
+
191
+ example "is_not_masked" do
192
+ # test_basic_features
193
+ end
194
+
195
+ example "count_masked" do
196
+ # test_basic_featrues
197
+ end
198
+
199
+ example "count_not_masked" do
200
+ # test_basic_featrues
201
+ end
202
+
203
+ example "unmask" do
204
+ # ---
205
+ x = CArray.int32(3,3).seq!
206
+ x.mask = CA_BOOLEAN([[0,1,0],
207
+ [1,1,1],
208
+ [0,1,0]])
209
+
210
+ a = x.to_ca
211
+ b = x.to_ca
212
+
213
+ a.unmask()
214
+ is_asserted_by { true == a.has_mask? } ### never mask eliminated from array
215
+ is_asserted_by { CA_INT32([[0,1,2],
216
+ [3,4,5],
217
+ [6,7,8]]) == a }
218
+
219
+ b.unmask(-1)
220
+ is_asserted_by { true == b.has_mask? } ### never mask eliminated from array
221
+ is_asserted_by { CA_INT32([[0,-1,2], ### filled with fill_value
222
+ [-1,-1,-1],
223
+ [6,-1,8]]) == b }
224
+ end
225
+
226
+ example "unmask_copy" do
227
+ # ---
228
+ a = CArray.int32(3,3).seq!
229
+ a.mask = CA_BOOLEAN([[0,1,0],
230
+ [1,1,1],
231
+ [0,1,0]])
232
+ u = a.unmask_copy()
233
+ is_asserted_by { false == u.has_mask? } ### never mask eliminated from array
234
+ is_asserted_by { CA_INT32([[0,1,2],
235
+ [3,4,5],
236
+ [6,7,8]]) == u }
237
+
238
+ # ---
239
+ a = CArray.int32(3,3).seq!
240
+ a.mask = CA_BOOLEAN([[0,1,0],
241
+ [1,1,1],
242
+ [0,1,0]])
243
+ u = a.unmask_copy(-1)
244
+ is_asserted_by { false == u.has_mask? } ### never mask eliminated from array
245
+ is_asserted_by { CA_INT32([[0,-1,2], ### filled with fill_value
246
+ [-1,-1,-1],
247
+ [6,-1,8]]) == u }
248
+ end
249
+
250
+ example "inherit_mask" do
251
+ # ---
252
+ a = CArray.int32(3,3).seq!
253
+ b = CArray.int32(3,3).seq!
254
+ c = CArray.int32(3,3).seq!
255
+ a.mask = CA_BOOLEAN([[0,1,0],
256
+ [0,0,0],
257
+ [0,1,0]])
258
+ b.mask = CA_BOOLEAN([[0,0,0],
259
+ [1,0,1],
260
+ [0,0,0]])
261
+ c.mask = CA_BOOLEAN([[0,0,0],
262
+ [0,1,0],
263
+ [0,0,0]])
264
+ c.inherit_mask(a,b)
265
+ is_asserted_by { CA_BOOLEAN([[0,1,0],
266
+ [1,1,1],
267
+ [0,1,0]]) == c.mask }
268
+ end
269
+
270
+ example "inherit_mask_replace" do
271
+ # ---
272
+ a = CArray.int32(3,3).seq!
273
+ b = CArray.int32(3,3).seq!
274
+ c = CArray.int32(3,3).seq!
275
+ a.mask = CA_BOOLEAN([[0,1,0],
276
+ [0,0,0],
277
+ [0,1,0]])
278
+ b.mask = CA_BOOLEAN([[0,0,0],
279
+ [1,0,1],
280
+ [0,0,0]])
281
+ c.mask = CA_BOOLEAN([[0,0,0],
282
+ [0,1,0],
283
+ [0,0,0]])
284
+ c.inherit_mask_replace(a,b)
285
+ is_asserted_by { CA_BOOLEAN([[0,1,0],
286
+ [1,0,1],
287
+ [0,1,0]]) == c.mask }
288
+
289
+ # ---
290
+ a = CArray.int32(3,3).seq!
291
+
292
+ end
293
+
294
+ # ----------------------------------------------------------------------
295
+
296
+ example "monop" do
297
+ # ---
298
+ a = CArray.float64(3,3) {1}
299
+ a.mask = CA_BOOLEAN([[0,1,0],
300
+ [1,1,1],
301
+ [0,1,0]])
302
+ b = -a ### example of monop
303
+ is_asserted_by { a.mask == b.mask }
304
+ end
305
+
306
+ example "binop" do
307
+ # ---
308
+ a = CArray.float64(3,3) {1}
309
+ b = CArray.float64(3,3) {1}
310
+ a.mask = CA_BOOLEAN([[0,1,0],
311
+ [0,1,0],
312
+ [0,1,0]])
313
+ b.mask = CA_BOOLEAN([[0,0,0],
314
+ [1,1,1],
315
+ [0,0,0]])
316
+ c = a + b ### example of binop
317
+ is_asserted_by { CA_BOOLEAN([[0,1,0],
318
+ [1,1,1],
319
+ [0,1,0]]) == c.mask }
320
+ end
321
+
322
+ example "cmpop" do
323
+ # ---
324
+ a = CArray.float64(3,3) {1}
325
+ b = CArray.float64(3,3) {1}
326
+ a.mask = CA_BOOLEAN([[0,1,0],
327
+ [0,1,0],
328
+ [0,1,0]])
329
+ b.mask = CA_BOOLEAN([[0,0,0],
330
+ [1,1,1],
331
+ [0,0,0]])
332
+ c = a.le(b) ### example of binop
333
+ is_asserted_by { CA_BOOLEAN([[0,1,0],
334
+ [1,1,1],
335
+ [0,1,0]]) == c.mask }
336
+ end
337
+
338
+ # ----------------------------------------------------------------------
339
+
340
+ example "basic_stat" do
341
+ # ---
342
+ a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
343
+
344
+ is_asserted_by { 1 == a.min }
345
+ is_asserted_by { 1 == a.min(:mask_limit => 0) }
346
+ is_asserted_by { 1 == a.min(:mask_limit => 0, :fill_value => -9999) }
347
+
348
+ is_asserted_by { 10 == a.max }
349
+ is_asserted_by { 10 == a.max(:mask_limit => 0) }
350
+ is_asserted_by { 10 == a.max(:mask_limit => 0, :fill_value => -9999) }
351
+
352
+ is_asserted_by { 55 == a.sum }
353
+ is_asserted_by { 55 == a.sum(:mask_limit => 0) }
354
+ is_asserted_by { 55 == a.sum(:mask_limit => 0, :fill_value => -9999) }
355
+
356
+ is_asserted_by { 5.5 == a.mean }
357
+ is_asserted_by { 5.5 == a.mean(:mask_limit => 0) }
358
+ is_asserted_by { 5.5 == a.mean(:mask_limit => 0, :fill_value => -9999) }
359
+
360
+ # ---
361
+ a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
362
+ a.mask = 0
363
+ a[0] = UNDEF
364
+ a[9] = UNDEF ### [_, 2, ..., 9,_]
365
+
366
+ is_asserted_by { 2 == a.min }
367
+ is_asserted_by { 2 == a.min(:mask_limit => 0) }
368
+ is_asserted_by { UNDEF == a.min(:mask_limit => 1) }
369
+ is_asserted_by { UNDEF == a.min(:mask_limit => 2) }
370
+ is_asserted_by { 2 == a.min(:mask_limit => 3) }
371
+ is_asserted_by { 2 == a.min(:mask_limit => 0, :fill_value => -9999) }
372
+ is_asserted_by { -9999 == a.min(:mask_limit => 1, :fill_value => -9999) }
373
+ is_asserted_by { -9999 == a.min(:mask_limit => 2, :fill_value => -9999) }
374
+ is_asserted_by { 2 == a.min(:mask_limit => 3, :fill_value => -9999) }
375
+
376
+ is_asserted_by { 9 == a.max }
377
+ is_asserted_by { 9 == a.max(:mask_limit => 0) }
378
+ is_asserted_by { UNDEF == a.max(:mask_limit => 1) }
379
+ is_asserted_by { UNDEF == a.max(:mask_limit => 2) }
380
+ is_asserted_by { 9 == a.max(:mask_limit => 3) }
381
+ is_asserted_by { 9 == a.max(:mask_limit => 0, :fill_value => -9999) }
382
+ is_asserted_by { -9999 == a.max(:mask_limit => 1, :fill_value => -9999) }
383
+ is_asserted_by { -9999 == a.max(:mask_limit => 2, :fill_value => -9999) }
384
+ is_asserted_by { 9 == a.max(:mask_limit => 3, :fill_value => -9999) }
385
+
386
+ is_asserted_by { 44 == a.sum }
387
+ is_asserted_by { 44 == a.sum(:mask_limit => 0) }
388
+ is_asserted_by { UNDEF == a.sum(:mask_limit => 1) }
389
+ is_asserted_by { UNDEF == a.sum(:mask_limit => 2) }
390
+ is_asserted_by { 44 == a.sum(:mask_limit => 3) }
391
+ is_asserted_by { 44 == a.sum(:mask_limit => 0, :fill_value => -9999) }
392
+ is_asserted_by { -9999 == a.sum(:mask_limit => 1, :fill_value => -9999) }
393
+ is_asserted_by { -9999 == a.sum(:mask_limit => 2, :fill_value => -9999) }
394
+ is_asserted_by { 44 == a.sum(:mask_limit => 3, :fill_value => -9999) }
395
+
396
+ is_asserted_by { 5.5 == a.mean }
397
+ is_asserted_by { 5.5 == a.mean(:mask_limit => 0) }
398
+ is_asserted_by { UNDEF == a.mean(:mask_limit => 1) }
399
+ is_asserted_by { UNDEF == a.mean(:mask_limit => 2) }
400
+ is_asserted_by { 5.5 == a.mean(:mask_limit => 3) }
401
+ is_asserted_by { 5.5 == a.mean(:mask_limit => 0, :fill_value => -9999) }
402
+ is_asserted_by { -9999 == a.mean(:mask_limit => 1, :fill_value => -9999) }
403
+ is_asserted_by { -9999 == a.mean(:mask_limit => 2, :fill_value => -9999) }
404
+ is_asserted_by { 5.5 == a.mean(:mask_limit => 3, :fill_value => -9999) }
405
+
406
+ end
407
+
408
+ example "accumulate" do
409
+ # ---
410
+ a = CArray.uint8(256) { 1 }
411
+
412
+ is_asserted_by { 0 == a.accumulate }
413
+ is_asserted_by { 0 == a.accumulate(:mask_limit => 0) }
414
+ is_asserted_by { 0 == a.accumulate(:mask_limit => 0, :fill_value => -9999) }
415
+
416
+ # ---
417
+ a = CArray.uint8(256) { 1 }
418
+ a[0] = UNDEF
419
+ a[255] = UNDEF
420
+
421
+ is_asserted_by { 254 == a.accumulate() }
422
+ is_asserted_by { 254 == a.accumulate(:mask_limit => 0) }
423
+ is_asserted_by { UNDEF == a.accumulate(:mask_limit => 1) }
424
+ is_asserted_by { UNDEF == a.accumulate(:mask_limit => 2) }
425
+ is_asserted_by { 254 == a.accumulate(:mask_limit => 0, :fill_value => -9999) }
426
+ is_asserted_by { -9999 == a.accumulate(:mask_limit => 1, :fill_value => -9999) }
427
+ is_asserted_by { -9999 == a.accumulate(:mask_limit => 2, :fill_value => -9999) }
428
+ end
429
+
430
+ example "variance" do
431
+ # ---
432
+ a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
433
+
434
+ is_asserted_by { true == (9.16666666666667 - a.variance()) < 0.000001 }
435
+ is_asserted_by { true == (9.16666666666667 - a.variance(:mask_limit=>0)) < 0.000001 }
436
+ is_asserted_by { true == (9.16666666666667 - a.variance(:mask_limit=>0, :fill_value=>-9999)) < 0.000001 }
437
+
438
+ # ---
439
+ a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
440
+ a.mask = 0
441
+ a[0] = UNDEF
442
+ a[9] = UNDEF ### [_, 2, ..., 9,_]
443
+
444
+ is_asserted_by { 6 == a.variance() }
445
+ is_asserted_by { 6 == a.variance(:mask_limit=>0) }
446
+ is_asserted_by { UNDEF == a.variance(:mask_limit=>1) }
447
+ is_asserted_by { UNDEF == a.variance(:mask_limit=>2) }
448
+ is_asserted_by { 6 == a.variance(:mask_limit=>3) }
449
+ is_asserted_by { 6 == a.variance(:mask_limit=>0, :fill_value=>-9999) }
450
+ is_asserted_by { -9999 == a.variance(:mask_limit=>1, :fill_value=>-9999) }
451
+ is_asserted_by { -9999 == a.variance(:mask_limit=>2, :fill_value=>-9999) }
452
+ is_asserted_by { 6 == a.variance(:mask_limit=>3, :fill_value=>-9999) }
453
+
454
+ end
455
+
456
+ example "variancep" do
457
+ # ---
458
+ a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
459
+
460
+ is_asserted_by { true == (8.25 - a.variancep()) < 0.000001 }
461
+ is_asserted_by { true == (8.25 - a.variancep(:mask_limit=>0)) < 0.000001 }
462
+ is_asserted_by { true == (8.25 - a.variancep(:mask_limit=>0, :fill_value=>-9999)) < 0.000001 }
463
+
464
+ # ---
465
+ a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
466
+ a.mask = 0
467
+ a[0] = UNDEF
468
+ a[9] = UNDEF ### [_, 2, ..., 9,_]
469
+
470
+ is_asserted_by { true == (5.25 - a.variancep()) < 0.000001 }
471
+ is_asserted_by { true == (5.25 - a.variancep(:mask_limit=>0)) < 0.000001 }
472
+ is_asserted_by { UNDEF == a.variancep(:mask_limit=>1) }
473
+ is_asserted_by { UNDEF == a.variancep(:mask_limit=>2) }
474
+ is_asserted_by { true == (5.25 - a.variancep(:mask_limit=>3)) < 0.000001 }
475
+ is_asserted_by { true == (5.25 - a.variancep(:mask_limit=>0, :fill_value=>-9999)) < 0.000001 }
476
+ is_asserted_by { -9999 == a.variancep(:mask_limit=>1, :fill_value=>-9999) }
477
+ is_asserted_by { -9999 == a.variancep(:mask_limit=>2, :fill_value=>-9999) }
478
+ is_asserted_by { true == (5.25 - a.variancep(:mask_limit=>3, :fill_value=>-9999)) < 0.000001 }
479
+ end
480
+
481
+ example "prod" do
482
+ # ---
483
+ a = CArray.int32(5).seq!(1) ### [1, 2, ..., 5]
484
+
485
+ is_asserted_by { 120 == a.prod() }
486
+ is_asserted_by { 120 == a.prod(:mask_limit => 0) }
487
+ is_asserted_by { 120 == a.prod(:mask_limit => 0, :fill_value => -9999) }
488
+
489
+ # ---
490
+ a = CArray.int32(5).seq!(1) ### [1, 2, ..., 5]
491
+ a[0] = UNDEF
492
+ a[2] = UNDEF ### [0, 2, _, 4, 5]
493
+
494
+ is_asserted_by { 40 == a.prod() }
495
+ is_asserted_by { 40 == a.prod(:mask_limit => 0) }
496
+ is_asserted_by { UNDEF == a.prod(:mask_limit => 1) }
497
+ is_asserted_by { UNDEF == a.prod(:mask_limit => 2) }
498
+ is_asserted_by { 40 == a.prod(:mask_limit => 3) }
499
+ is_asserted_by { 40 == a.prod(:mask_limit => 0, :fill_value => -9999) }
500
+ is_asserted_by { -9999 == a.prod(:mask_limit => 1, :fill_value => -9999) }
501
+ is_asserted_by { -9999 == a.prod(:mask_limit => 2, :fill_value => -9999) }
502
+ is_asserted_by { 40 == a.prod(:mask_limit => 3, :fill_value => -9999) }
503
+ end
504
+
505
+ example "wsum" do
506
+
507
+ # ---
508
+ a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
509
+ w = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
510
+
511
+ is_asserted_by { 385 == a.wsum(w) }
512
+ is_asserted_by { 385 == a.wsum(w, 0) }
513
+ is_asserted_by { 385 == a.wsum(w, 0, -9999) }
514
+
515
+ # ---
516
+ a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
517
+ w = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
518
+ a.mask = 0
519
+ w.mask = 0
520
+ a[0] = UNDEF ### [_, 2, ..., 9,10]
521
+ w[9] = UNDEF ### [1, 2, ..., 9,_]
522
+
523
+ # is_asserted_by { 284 == a.wsum(w) }
524
+ # is_asserted_by { UNDEF == a.wsum(w, 0) }
525
+ # is_asserted_by { UNDEF == a.wsum(w, 1) }
526
+ # is_asserted_by { 284 == a.wsum(w, 2) }
527
+
528
+ # is_asserted_by { -9999 == a.wsum(w, 0, -9999) }
529
+ # is_asserted_by { -9999 == a.wsum(w, 1, -9999) }
530
+ # is_asserted_by { 284 == a.wsum(w, 2, -9999) }
531
+
532
+ end
533
+
534
+ example "cumsum" do
535
+ # ---
536
+ a = CArray.int32(10).seq!(1)
537
+ a[2] = UNDEF
538
+ is_asserted_by { CA_DOUBLE([1, 3, 3, 7, 12, 18, 25, 33, 42, 52]) ==
539
+ a.cumsum() }
540
+ is_asserted_by { CA_DOUBLE([1, 3, *([UNDEF]*8)]) ==
541
+ a.cumsum(0) }
542
+ is_asserted_by { CA_DOUBLE([1, 3, *([-9999]*8)]) ==
543
+ a.cumsum(0, -9999) }
544
+ is_asserted_by { CA_DOUBLE([1, 3, 3, 7, 12, 18, 25, 33, 42, 52]) ==
545
+ a.cumsum(1) }
546
+ end
547
+
548
+ example "cumprod" do
549
+ # ---
550
+ a = CArray.int32(5).seq!(1)
551
+ a[2] = UNDEF
552
+ is_asserted_by { CA_DOUBLE([1, 2, 2, 8, 40]) ==
553
+ a.cumprod() }
554
+ is_asserted_by { CA_DOUBLE([1, 2, *([UNDEF]*3)]) ==
555
+ a.cumprod(0) }
556
+ is_asserted_by { CA_DOUBLE([1, 2, *([-9999]*3)]) ==
557
+ a.cumprod(0, -9999) }
558
+ is_asserted_by { CA_DOUBLE([1, 2, 2, 8, 40]) ==
559
+ a.cumprod(1) }
560
+ end
561
+
562
+ example "count_xxx" do
563
+ # TODO
564
+ end
565
+
566
+ example "all_xxx?" do
567
+ # TODO
568
+ end
569
+
570
+ example "any_xxx?" do
571
+ # TODO
572
+ end
573
+
574
+ end