carray 2.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.yardopts +5 -25
- data/CHANGELOG.md +16 -0
- data/LICENSE +1 -1
- data/NEWS.md +3 -0
- data/README.md +128 -44
- data/carray.gemspec +22 -24
- data/ext/ca_array_pool.c +91 -0
- data/ext/ca_axis_descriptor.h +186 -0
- data/ext/ca_axis_dispatch.c +924 -0
- data/ext/ca_axis_group.c +1208 -0
- data/ext/ca_bincmp_dispatch.c +76 -0
- data/ext/ca_bincmp_dispatch.h +85 -0
- data/ext/ca_binop_dispatch.c +125 -0
- data/ext/ca_binop_dispatch.h +159 -0
- data/ext/ca_categorical_iterator.c +1375 -0
- data/ext/ca_compare.c +94 -0
- data/ext/ca_compare.h +26 -0
- data/ext/ca_composite_dispatch.c +414 -0
- data/ext/ca_composite_dispatch.h +116 -0
- data/ext/ca_for_buffer.h +96 -0
- data/ext/ca_for_each_element.h +241 -0
- data/ext/ca_group_iter.c +304 -0
- data/ext/ca_iter_substrate.h +325 -0
- data/ext/ca_kernel_iterator.c +4321 -0
- data/ext/ca_kernel_iterator.h +2603 -0
- data/ext/ca_moncmp_dispatch.c +37 -0
- data/ext/ca_moncmp_dispatch.h +62 -0
- data/ext/ca_monop_dispatch.c +200 -0
- data/ext/ca_monop_dispatch.h +235 -0
- data/ext/ca_obj_array.c +355 -359
- data/ext/ca_obj_bincmp.c +809 -0
- data/ext/ca_obj_binop.c +892 -0
- data/ext/ca_obj_bitarray.c +369 -164
- data/ext/ca_obj_bitfield.c +294 -234
- data/ext/ca_obj_block.c +189 -711
- data/ext/ca_obj_byte_swap.c +766 -0
- data/ext/ca_obj_const_string.c +965 -0
- data/ext/ca_obj_face.c +670 -0
- data/ext/ca_obj_face.h +247 -0
- data/ext/ca_obj_fake.c +228 -100
- data/ext/ca_obj_farray.c +54 -441
- data/ext/ca_obj_field.c +82 -529
- data/ext/ca_obj_fixlen_string.c +306 -0
- data/ext/ca_obj_grid.c +858 -440
- data/ext/ca_obj_meld.c +1034 -0
- data/ext/ca_obj_moncmp.c +569 -0
- data/ext/ca_obj_monop.c +1111 -0
- data/ext/ca_obj_object.c +774 -298
- data/ext/ca_obj_record.c +468 -0
- data/ext/ca_obj_reduce.c +97 -82
- data/ext/ca_obj_refer.c +569 -459
- data/ext/ca_obj_remap.c +475 -0
- data/ext/ca_obj_repeat.c +92 -477
- data/ext/ca_obj_roll.c +616 -0
- data/ext/ca_obj_select.c +344 -296
- data/ext/ca_obj_select_axis.c +1296 -0
- data/ext/ca_obj_shift.c +230 -792
- data/ext/ca_obj_source.c +78 -0
- data/ext/ca_obj_stack.c +1173 -0
- data/ext/ca_obj_stride.c +2501 -0
- data/ext/ca_obj_string.c +268 -0
- data/ext/ca_obj_tile.c +614 -0
- data/ext/ca_obj_time.c +546 -0
- data/ext/ca_obj_timedelta.c +435 -0
- data/ext/ca_obj_transpose.c +62 -516
- data/ext/ca_obj_triop.c +746 -0
- data/ext/ca_obj_unbound_repeat.c +208 -241
- data/ext/ca_obj_window.c +1131 -563
- data/ext/ca_op_byte_swap.c +175 -0
- data/ext/ca_op_ipower.c +319 -0
- data/ext/ca_op_powi.h +88 -0
- data/ext/ca_sort_kernels.h +132 -0
- data/ext/ca_sweep_engine.c +430 -0
- data/ext/ca_sweep_engine.h +157 -0
- data/ext/ca_transform_common.c +228 -0
- data/ext/ca_triop_dispatch.c +55 -0
- data/ext/ca_triop_dispatch.h +62 -0
- data/ext/carray.h +795 -402
- data/ext/carray_access.c +831 -711
- data/ext/carray_attribute.c +98 -330
- data/ext/carray_bincount.c +255 -0
- data/ext/carray_broadcast.c +283 -0
- data/ext/carray_call_cfunc.c +1360 -828
- data/ext/carray_call_cfunc.h +160 -0
- data/ext/carray_cast.c +1212 -301
- data/ext/carray_cast_func.rb +81 -40
- data/ext/carray_class.c +53 -63
- data/ext/carray_config.h +28 -0
- data/ext/carray_conversion.c +350 -346
- data/ext/carray_copy.c +156 -268
- data/ext/carray_core.c +1342 -199
- data/ext/carray_count.c +312 -0
- data/ext/carray_data_type.c +43 -19
- data/ext/carray_element.c +585 -213
- data/ext/carray_factorize.c +2542 -0
- data/ext/carray_generate.c +230 -559
- data/ext/carray_histogram.c +490 -0
- data/ext/carray_hold.c +228 -0
- data/ext/carray_index_classifier.c +1035 -0
- data/ext/carray_index_classifier.h +27 -0
- data/ext/carray_internal.h +120 -0
- data/ext/carray_kernels_bincmp.c +4445 -0
- data/ext/carray_kernels_binop.c +10979 -0
- data/ext/carray_kernels_init.c +36 -0
- data/ext/carray_kernels_map.c +3466 -0
- data/ext/carray_kernels_moncmp.c +2096 -0
- data/ext/carray_kernels_monop.c +18312 -0
- data/ext/carray_kernels_reduce_aggregate.c +25836 -0
- data/ext/carray_kernels_reduce_boolean.c +329 -0
- data/ext/carray_kernels_reduce_cumulative.c +14592 -0
- data/ext/carray_kernels_reduce_extreme.c +16947 -0
- data/ext/carray_kernels_reduce_variance.c +3909 -0
- data/ext/carray_kernels_scan.c +3692 -0
- data/ext/carray_kernels_search.c +32137 -0
- data/ext/carray_kernels_sort.c +10625 -0
- data/ext/carray_kernels_triop.c +1391 -0
- data/ext/carray_lazy.c +567 -0
- data/ext/carray_loop.c +88 -200
- data/ext/carray_mask.c +848 -154
- data/ext/carray_math_kernel.h +120 -0
- data/ext/carray_mathfunc.c +10 -241
- data/ext/carray_median_percentile.c +1257 -0
- data/ext/carray_memory_view.c +1625 -0
- data/ext/carray_operator.c +1526 -318
- data/ext/carray_order.c +664 -1394
- data/ext/carray_partition.c +416 -0
- data/ext/carray_random.c +518 -0
- data/ext/carray_scatter.c +357 -0
- data/ext/carray_slab.c +1219 -0
- data/ext/carray_slab.h +84 -0
- data/ext/carray_sort.c +829 -0
- data/ext/carray_sort_kernel.c +620 -0
- data/ext/carray_struct.c +695 -0
- data/ext/carray_test.c +343 -229
- data/ext/carray_undef.c +34 -17
- data/ext/carray_utils.c +175 -74
- data/ext/extconf.rb +216 -55
- data/ext/mk_call_cfunc.rb +480 -0
- data/ext/mkkernel.rb +8842 -0
- data/ext/ruby_carray.c +202 -101
- data/ext/version.h +4 -14
- data/ext/version.rb +5 -13
- data/lib/carray/arrow_tensor.rb +401 -0
- data/lib/carray/attribute.rb +166 -0
- data/lib/carray/autoload_carray.rb +220 -0
- data/lib/carray/autoload_method_extension.rb +44 -0
- data/lib/carray/axis_group.rb +711 -0
- data/lib/carray/basics.rb +481 -0
- data/lib/carray/bincount_nd.rb +358 -0
- data/lib/carray/block_iterator.rb +604 -0
- data/lib/carray/boolean_reduce.rb +109 -0
- data/lib/carray/categorical.rb +561 -0
- data/lib/carray/categorical_iterator.rb +1062 -0
- data/lib/carray/complex.rb +150 -0
- data/lib/carray/conditional.rb +216 -0
- data/lib/carray/const_string.rb +228 -0
- data/lib/carray/construct.rb +139 -328
- data/lib/carray/core_extensions.rb +240 -0
- data/lib/carray/data_type_extension.rb +233 -0
- data/lib/carray/fixlen_string.rb +95 -0
- data/lib/carray/frame/concat.rb +132 -0
- data/lib/carray/frame/convert.rb +95 -0
- data/lib/carray/frame/csv_parser.rb +211 -0
- data/lib/carray/frame/frame.rb +649 -0
- data/lib/carray/frame/group.rb +186 -0
- data/lib/carray/frame/io.rb +164 -0
- data/lib/carray/frame/join.rb +248 -0
- data/lib/carray/frame/records.rb +99 -0
- data/lib/carray/frame/sort.rb +113 -0
- data/lib/carray/frame/verbs.rb +299 -0
- data/lib/carray/frame.rb +16 -0
- data/lib/carray/histogram.rb +512 -0
- data/lib/carray/inspect.rb +37 -20
- data/lib/carray/iterator.rb +57 -349
- data/lib/carray/lazy.rb +889 -0
- data/lib/carray/mask_gap_fill.rb +200 -0
- data/lib/carray/math.rb +78 -342
- data/lib/carray/meld_reduce.rb +289 -0
- data/lib/carray/methods/align_addr.rb +116 -0
- data/lib/carray/methods/bin.rb +128 -0
- data/lib/carray/methods/bincount.rb +87 -0
- data/lib/carray/methods/bit_string.rb +92 -0
- data/lib/carray/methods/broadcast.rb +63 -0
- data/lib/carray/methods/choose.rb +39 -0
- data/lib/carray/methods/composition.rb +280 -0
- data/lib/carray/methods/gather_nd.rb +206 -0
- data/lib/carray/methods/index.rb +39 -0
- data/lib/carray/methods/insert_block.rb +99 -0
- data/lib/carray/methods/is_in.rb +141 -0
- data/lib/carray/methods/join.rb +90 -0
- data/lib/carray/methods/locate_addr.rb +47 -0
- data/lib/carray/methods/mask_duplicates.rb +41 -0
- data/lib/carray/methods/meshgrid.rb +91 -0
- data/lib/carray/methods/mode.rb +126 -0
- data/lib/carray/methods/nunique.rb +46 -0
- data/lib/carray/methods/resize.rb +56 -0
- data/lib/carray/methods/snap.rb +156 -0
- data/lib/carray/methods/string_format.rb +57 -0
- data/lib/carray/methods/unique.rb +47 -0
- data/lib/carray/methods/value_counts.rb +71 -0
- data/lib/carray/mkmf.rb +124 -101
- data/lib/carray/runtime.rb +108 -0
- data/lib/carray/serialize.rb +478 -167
- data/lib/carray/slab_iterator.rb +292 -0
- data/lib/carray/stack.rb +291 -0
- data/lib/carray/string.rb +56 -180
- data/lib/carray/string_operation_extension.rb +289 -0
- data/lib/carray/struct.rb +335 -323
- data/lib/carray/struct_builder.rb +697 -0
- data/lib/carray/table.rb +41 -2
- data/lib/carray/time.rb +2255 -38
- data/lib/carray/window_iterator.rb +655 -0
- data/lib/carray.rb +55 -57
- metadata +163 -130
- data/Rakefile +0 -51
- data/TODO.md +0 -18
- data/ext/ca_iter_block.c +0 -257
- data/ext/ca_iter_dimension.c +0 -299
- data/ext/ca_iter_window.c +0 -214
- data/ext/ca_obj_mapping.c +0 -644
- data/ext/carray_iterator.c +0 -641
- data/ext/carray_math.rb +0 -850
- data/ext/carray_numeric.c +0 -259
- data/ext/carray_sort_addr.c +0 -254
- data/ext/carray_stat.c +0 -2100
- data/ext/carray_stat_proc.rb +0 -1999
- data/ext/mkmath.rb +0 -741
- data/ext/ruby_ccomplex.c +0 -509
- data/ext/ruby_float_func.c +0 -86
- data/lib/carray/array.rb +0 -8
- data/lib/carray/autoload/autoload_base.rb +0 -19
- data/lib/carray/autoload/autoload_gem_cairo.rb +0 -9
- data/lib/carray/autoload/autoload_gem_ffi.rb +0 -9
- data/lib/carray/autoload/autoload_gem_gnuplot.rb +0 -2
- data/lib/carray/autoload/autoload_gem_io_csv.rb +0 -14
- data/lib/carray/autoload/autoload_gem_io_pg.rb +0 -6
- data/lib/carray/autoload/autoload_gem_io_sqlite3.rb +0 -12
- data/lib/carray/autoload/autoload_gem_narray.rb +0 -10
- data/lib/carray/autoload/autoload_gem_numo_narray.rb +0 -15
- data/lib/carray/autoload/autoload_gem_opencv.rb +0 -16
- data/lib/carray/autoload/autoload_gem_random.rb +0 -8
- data/lib/carray/autoload/autoload_gem_rmagick.rb +0 -23
- data/lib/carray/autoload/autoload_gem_zimg.rb +0 -3
- data/lib/carray/autoload/autoload_io_imagemagick.rb +0 -6
- data/lib/carray/autoload/autoload_math_histogram.rb +0 -5
- data/lib/carray/autoload/autoload_math_recurrence.rb +0 -6
- data/lib/carray/autoload/autoload_object_iterator.rb +0 -1
- data/lib/carray/autoload/autoload_object_link.rb +0 -1
- data/lib/carray/autoload/autoload_object_pack.rb +0 -2
- data/lib/carray/autoload.rb +0 -141
- data/lib/carray/basic.rb +0 -191
- data/lib/carray/broadcast.rb +0 -101
- data/lib/carray/compose.rb +0 -315
- data/lib/carray/convert.rb +0 -115
- data/lib/carray/info.rb +0 -110
- data/lib/carray/io/imagemagick.rb +0 -235
- data/lib/carray/mask.rb +0 -102
- data/lib/carray/math/histogram.rb +0 -177
- data/lib/carray/math/recurrence.rb +0 -93
- data/lib/carray/object/ca_obj_iterator.rb +0 -50
- data/lib/carray/object/ca_obj_link.rb +0 -50
- data/lib/carray/object/ca_obj_pack.rb +0 -99
- data/lib/carray/obsolete.rb +0 -256
- data/lib/carray/ordering.rb +0 -181
- data/lib/carray/testing.rb +0 -51
- data/lib/carray/transform.rb +0 -109
- data/misc/Methods.ja.md +0 -182
- data/misc/NOTE +0 -51
- data/spec/Classes/CABitfield_spec.rb +0 -58
- data/spec/Classes/CABlockIterator_spec.rb +0 -114
- data/spec/Classes/CABlock_spec.rb +0 -205
- data/spec/Classes/CAField_spec.rb +0 -39
- data/spec/Classes/CAGrid_spec.rb +0 -75
- data/spec/Classes/CAMap_spec.rb +0 -0
- data/spec/Classes/CAMapping_spec.rb +0 -105
- data/spec/Classes/CAObject_attribute_spec.rb +0 -33
- data/spec/Classes/CAObject_spec.rb +0 -33
- data/spec/Classes/CARefer_spec.rb +0 -93
- data/spec/Classes/CARepeat_spec.rb +0 -65
- data/spec/Classes/CASelect_spec.rb +0 -22
- data/spec/Classes/CAShift_spec.rb +0 -16
- data/spec/Classes/CAStruct_spec.rb +0 -71
- data/spec/Classes/CATranspose_spec.rb +0 -60
- data/spec/Classes/CAUnboudRepeat_spec.rb +0 -102
- data/spec/Classes/CAWindow_spec.rb +0 -54
- data/spec/Classes/CAWrap_spec.rb +0 -8
- data/spec/Classes/CArray_spec.rb +0 -184
- data/spec/Classes/CScalar_spec.rb +0 -55
- data/spec/Classes/ex1.rb +0 -46
- data/spec/Features/feature_130_spec.rb +0 -19
- data/spec/Features/feature_attributes_spec.rb +0 -280
- data/spec/Features/feature_boolean_spec.rb +0 -98
- data/spec/Features/feature_broadcast.rb +0 -116
- data/spec/Features/feature_cast_function.rb +0 -19
- data/spec/Features/feature_cast_spec.rb +0 -33
- data/spec/Features/feature_class_spec.rb +0 -84
- data/spec/Features/feature_complex_spec.rb +0 -42
- data/spec/Features/feature_composite_spec.rb +0 -124
- data/spec/Features/feature_convert_spec.rb +0 -46
- data/spec/Features/feature_copy_spec.rb +0 -123
- data/spec/Features/feature_creation_spec.rb +0 -84
- data/spec/Features/feature_element_spec.rb +0 -144
- data/spec/Features/feature_extream_spec.rb +0 -54
- data/spec/Features/feature_generate_spec.rb +0 -74
- data/spec/Features/feature_index_spec.rb +0 -69
- data/spec/Features/feature_mask_spec.rb +0 -580
- data/spec/Features/feature_math_spec.rb +0 -97
- data/spec/Features/feature_order_spec.rb +0 -146
- data/spec/Features/feature_ref_store_spec.rb +0 -209
- data/spec/Features/feature_serialization_spec.rb +0 -125
- data/spec/Features/feature_stat_spec.rb +0 -397
- data/spec/Features/feature_virtual_spec.rb +0 -48
- data/spec/Features/method_eq_spec.rb +0 -81
- data/spec/Features/method_is_nan_spec.rb +0 -12
- data/spec/Features/method_map_spec.rb +0 -54
- data/spec/Features/method_max_with.rb +0 -20
- data/spec/Features/method_min_with.rb +0 -19
- data/spec/Features/method_ne_spec.rb +0 -18
- data/spec/Features/method_project_spec.rb +0 -188
- data/spec/Features/method_ref_spec.rb +0 -27
- data/spec/Features/method_round_spec.rb +0 -11
- data/spec/Features/method_s_linspace_spec.rb +0 -48
- data/spec/Features/method_s_span_spec.rb +0 -14
- data/spec/Features/method_seq_spec.rb +0 -47
- data/spec/Features/method_sort_with.rb +0 -43
- data/spec/Features/method_sorted_with.rb +0 -29
- data/spec/Features/method_span_spec.rb +0 -42
- data/spec/Features/method_wrap_readonly_spec.rb +0 -43
- data/spec/UnitTest/test_CAVirtual.rb +0 -214
- data/spec/spec_all.rb +0 -10
- data/utils/ca_ase.rb +0 -21
- data/utils/ca_methods.rb +0 -15
- data/utils/cast_checker.rb +0 -30
- data/utils/convert_test.rb +0 -73
- data/utils/extract_yard.rb +0 -22
- data/utils/guess_shape.rb +0 -76
- data/utils/monkey_patch_methods.rb +0 -62
- data/utils/remove_resource_fork.sh +0 -5
|
@@ -1,580 +0,0 @@
|
|
|
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 "compare with UNDEF" do
|
|
204
|
-
a = CA_INT([1,UNDEF,2])
|
|
205
|
-
is_asserted_by { a.eq(UNDEF) == a.is_masked }
|
|
206
|
-
is_asserted_by { a.ne(UNDEF) == a.is_not_masked }
|
|
207
|
-
end
|
|
208
|
-
|
|
209
|
-
example "unmask" do
|
|
210
|
-
# ---
|
|
211
|
-
x = CArray.int32(3,3).seq!
|
|
212
|
-
x.mask = CA_BOOLEAN([[0,1,0],
|
|
213
|
-
[1,1,1],
|
|
214
|
-
[0,1,0]])
|
|
215
|
-
|
|
216
|
-
a = x.to_ca
|
|
217
|
-
b = x.to_ca
|
|
218
|
-
|
|
219
|
-
a.unmask()
|
|
220
|
-
is_asserted_by { true == a.has_mask? } ### never mask eliminated from array
|
|
221
|
-
is_asserted_by { CA_INT32([[0,1,2],
|
|
222
|
-
[3,4,5],
|
|
223
|
-
[6,7,8]]) == a }
|
|
224
|
-
|
|
225
|
-
b.unmask(-1)
|
|
226
|
-
is_asserted_by { true == b.has_mask? } ### never mask eliminated from array
|
|
227
|
-
is_asserted_by { CA_INT32([[0,-1,2], ### filled with fill_value
|
|
228
|
-
[-1,-1,-1],
|
|
229
|
-
[6,-1,8]]) == b }
|
|
230
|
-
end
|
|
231
|
-
|
|
232
|
-
example "unmask_copy" do
|
|
233
|
-
# ---
|
|
234
|
-
a = CArray.int32(3,3).seq!
|
|
235
|
-
a.mask = CA_BOOLEAN([[0,1,0],
|
|
236
|
-
[1,1,1],
|
|
237
|
-
[0,1,0]])
|
|
238
|
-
u = a.unmask_copy()
|
|
239
|
-
is_asserted_by { false == u.has_mask? } ### never mask eliminated from array
|
|
240
|
-
is_asserted_by { CA_INT32([[0,1,2],
|
|
241
|
-
[3,4,5],
|
|
242
|
-
[6,7,8]]) == u }
|
|
243
|
-
|
|
244
|
-
# ---
|
|
245
|
-
a = CArray.int32(3,3).seq!
|
|
246
|
-
a.mask = CA_BOOLEAN([[0,1,0],
|
|
247
|
-
[1,1,1],
|
|
248
|
-
[0,1,0]])
|
|
249
|
-
u = a.unmask_copy(-1)
|
|
250
|
-
is_asserted_by { false == u.has_mask? } ### never mask eliminated from array
|
|
251
|
-
is_asserted_by { CA_INT32([[0,-1,2], ### filled with fill_value
|
|
252
|
-
[-1,-1,-1],
|
|
253
|
-
[6,-1,8]]) == u }
|
|
254
|
-
end
|
|
255
|
-
|
|
256
|
-
example "inherit_mask" do
|
|
257
|
-
# ---
|
|
258
|
-
a = CArray.int32(3,3).seq!
|
|
259
|
-
b = CArray.int32(3,3).seq!
|
|
260
|
-
c = CArray.int32(3,3).seq!
|
|
261
|
-
a.mask = CA_BOOLEAN([[0,1,0],
|
|
262
|
-
[0,0,0],
|
|
263
|
-
[0,1,0]])
|
|
264
|
-
b.mask = CA_BOOLEAN([[0,0,0],
|
|
265
|
-
[1,0,1],
|
|
266
|
-
[0,0,0]])
|
|
267
|
-
c.mask = CA_BOOLEAN([[0,0,0],
|
|
268
|
-
[0,1,0],
|
|
269
|
-
[0,0,0]])
|
|
270
|
-
c.inherit_mask(a,b)
|
|
271
|
-
is_asserted_by { CA_BOOLEAN([[0,1,0],
|
|
272
|
-
[1,1,1],
|
|
273
|
-
[0,1,0]]) == c.mask }
|
|
274
|
-
end
|
|
275
|
-
|
|
276
|
-
example "inherit_mask_replace" do
|
|
277
|
-
# ---
|
|
278
|
-
a = CArray.int32(3,3).seq!
|
|
279
|
-
b = CArray.int32(3,3).seq!
|
|
280
|
-
c = CArray.int32(3,3).seq!
|
|
281
|
-
a.mask = CA_BOOLEAN([[0,1,0],
|
|
282
|
-
[0,0,0],
|
|
283
|
-
[0,1,0]])
|
|
284
|
-
b.mask = CA_BOOLEAN([[0,0,0],
|
|
285
|
-
[1,0,1],
|
|
286
|
-
[0,0,0]])
|
|
287
|
-
c.mask = CA_BOOLEAN([[0,0,0],
|
|
288
|
-
[0,1,0],
|
|
289
|
-
[0,0,0]])
|
|
290
|
-
c.inherit_mask_replace(a,b)
|
|
291
|
-
is_asserted_by { CA_BOOLEAN([[0,1,0],
|
|
292
|
-
[1,0,1],
|
|
293
|
-
[0,1,0]]) == c.mask }
|
|
294
|
-
|
|
295
|
-
# ---
|
|
296
|
-
a = CArray.int32(3,3).seq!
|
|
297
|
-
|
|
298
|
-
end
|
|
299
|
-
|
|
300
|
-
# ----------------------------------------------------------------------
|
|
301
|
-
|
|
302
|
-
example "monop" do
|
|
303
|
-
# ---
|
|
304
|
-
a = CArray.float64(3,3) {1}
|
|
305
|
-
a.mask = CA_BOOLEAN([[0,1,0],
|
|
306
|
-
[1,1,1],
|
|
307
|
-
[0,1,0]])
|
|
308
|
-
b = -a ### example of monop
|
|
309
|
-
is_asserted_by { a.mask == b.mask }
|
|
310
|
-
end
|
|
311
|
-
|
|
312
|
-
example "binop" do
|
|
313
|
-
# ---
|
|
314
|
-
a = CArray.float64(3,3) {1}
|
|
315
|
-
b = CArray.float64(3,3) {1}
|
|
316
|
-
a.mask = CA_BOOLEAN([[0,1,0],
|
|
317
|
-
[0,1,0],
|
|
318
|
-
[0,1,0]])
|
|
319
|
-
b.mask = CA_BOOLEAN([[0,0,0],
|
|
320
|
-
[1,1,1],
|
|
321
|
-
[0,0,0]])
|
|
322
|
-
c = a + b ### example of binop
|
|
323
|
-
is_asserted_by { CA_BOOLEAN([[0,1,0],
|
|
324
|
-
[1,1,1],
|
|
325
|
-
[0,1,0]]) == c.mask }
|
|
326
|
-
end
|
|
327
|
-
|
|
328
|
-
example "cmpop" do
|
|
329
|
-
# ---
|
|
330
|
-
a = CArray.float64(3,3) {1}
|
|
331
|
-
b = CArray.float64(3,3) {1}
|
|
332
|
-
a.mask = CA_BOOLEAN([[0,1,0],
|
|
333
|
-
[0,1,0],
|
|
334
|
-
[0,1,0]])
|
|
335
|
-
b.mask = CA_BOOLEAN([[0,0,0],
|
|
336
|
-
[1,1,1],
|
|
337
|
-
[0,0,0]])
|
|
338
|
-
c = a.le(b) ### example of binop
|
|
339
|
-
is_asserted_by { CA_BOOLEAN([[0,1,0],
|
|
340
|
-
[1,1,1],
|
|
341
|
-
[0,1,0]]) == c.mask }
|
|
342
|
-
end
|
|
343
|
-
|
|
344
|
-
# ----------------------------------------------------------------------
|
|
345
|
-
|
|
346
|
-
example "basic_stat" do
|
|
347
|
-
# ---
|
|
348
|
-
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
|
349
|
-
|
|
350
|
-
is_asserted_by { 1 == a.min }
|
|
351
|
-
is_asserted_by { 1 == a.min(:mask_limit => 0) }
|
|
352
|
-
is_asserted_by { 1 == a.min(:mask_limit => 0, :fill_value => -9999) }
|
|
353
|
-
|
|
354
|
-
is_asserted_by { 10 == a.max }
|
|
355
|
-
is_asserted_by { 10 == a.max(:mask_limit => 0) }
|
|
356
|
-
is_asserted_by { 10 == a.max(:mask_limit => 0, :fill_value => -9999) }
|
|
357
|
-
|
|
358
|
-
is_asserted_by { 55 == a.sum }
|
|
359
|
-
is_asserted_by { 55 == a.sum(:mask_limit => 0) }
|
|
360
|
-
is_asserted_by { 55 == a.sum(:mask_limit => 0, :fill_value => -9999) }
|
|
361
|
-
|
|
362
|
-
is_asserted_by { 5.5 == a.mean }
|
|
363
|
-
is_asserted_by { 5.5 == a.mean(:mask_limit => 0) }
|
|
364
|
-
is_asserted_by { 5.5 == a.mean(:mask_limit => 0, :fill_value => -9999) }
|
|
365
|
-
|
|
366
|
-
# ---
|
|
367
|
-
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
|
368
|
-
a.mask = 0
|
|
369
|
-
a[0] = UNDEF
|
|
370
|
-
a[9] = UNDEF ### [_, 2, ..., 9,_]
|
|
371
|
-
|
|
372
|
-
is_asserted_by { 2 == a.min }
|
|
373
|
-
is_asserted_by { 2 == a.min(:mask_limit => 0) }
|
|
374
|
-
is_asserted_by { UNDEF == a.min(:mask_limit => 1) }
|
|
375
|
-
is_asserted_by { UNDEF == a.min(:mask_limit => 2) }
|
|
376
|
-
is_asserted_by { 2 == a.min(:mask_limit => 3) }
|
|
377
|
-
is_asserted_by { 2 == a.min(:mask_limit => 0, :fill_value => -9999) }
|
|
378
|
-
is_asserted_by { -9999 == a.min(:mask_limit => 1, :fill_value => -9999) }
|
|
379
|
-
is_asserted_by { -9999 == a.min(:mask_limit => 2, :fill_value => -9999) }
|
|
380
|
-
is_asserted_by { 2 == a.min(:mask_limit => 3, :fill_value => -9999) }
|
|
381
|
-
|
|
382
|
-
is_asserted_by { 9 == a.max }
|
|
383
|
-
is_asserted_by { 9 == a.max(:mask_limit => 0) }
|
|
384
|
-
is_asserted_by { UNDEF == a.max(:mask_limit => 1) }
|
|
385
|
-
is_asserted_by { UNDEF == a.max(:mask_limit => 2) }
|
|
386
|
-
is_asserted_by { 9 == a.max(:mask_limit => 3) }
|
|
387
|
-
is_asserted_by { 9 == a.max(:mask_limit => 0, :fill_value => -9999) }
|
|
388
|
-
is_asserted_by { -9999 == a.max(:mask_limit => 1, :fill_value => -9999) }
|
|
389
|
-
is_asserted_by { -9999 == a.max(:mask_limit => 2, :fill_value => -9999) }
|
|
390
|
-
is_asserted_by { 9 == a.max(:mask_limit => 3, :fill_value => -9999) }
|
|
391
|
-
|
|
392
|
-
is_asserted_by { 44 == a.sum }
|
|
393
|
-
is_asserted_by { 44 == a.sum(:mask_limit => 0) }
|
|
394
|
-
is_asserted_by { UNDEF == a.sum(:mask_limit => 1) }
|
|
395
|
-
is_asserted_by { UNDEF == a.sum(:mask_limit => 2) }
|
|
396
|
-
is_asserted_by { 44 == a.sum(:mask_limit => 3) }
|
|
397
|
-
is_asserted_by { 44 == a.sum(:mask_limit => 0, :fill_value => -9999) }
|
|
398
|
-
is_asserted_by { -9999 == a.sum(:mask_limit => 1, :fill_value => -9999) }
|
|
399
|
-
is_asserted_by { -9999 == a.sum(:mask_limit => 2, :fill_value => -9999) }
|
|
400
|
-
is_asserted_by { 44 == a.sum(:mask_limit => 3, :fill_value => -9999) }
|
|
401
|
-
|
|
402
|
-
is_asserted_by { 5.5 == a.mean }
|
|
403
|
-
is_asserted_by { 5.5 == a.mean(:mask_limit => 0) }
|
|
404
|
-
is_asserted_by { UNDEF == a.mean(:mask_limit => 1) }
|
|
405
|
-
is_asserted_by { UNDEF == a.mean(:mask_limit => 2) }
|
|
406
|
-
is_asserted_by { 5.5 == a.mean(:mask_limit => 3) }
|
|
407
|
-
is_asserted_by { 5.5 == a.mean(:mask_limit => 0, :fill_value => -9999) }
|
|
408
|
-
is_asserted_by { -9999 == a.mean(:mask_limit => 1, :fill_value => -9999) }
|
|
409
|
-
is_asserted_by { -9999 == a.mean(:mask_limit => 2, :fill_value => -9999) }
|
|
410
|
-
is_asserted_by { 5.5 == a.mean(:mask_limit => 3, :fill_value => -9999) }
|
|
411
|
-
|
|
412
|
-
end
|
|
413
|
-
|
|
414
|
-
example "accumulate" do
|
|
415
|
-
# ---
|
|
416
|
-
a = CArray.uint8(256) { 1 }
|
|
417
|
-
|
|
418
|
-
is_asserted_by { 0 == a.accumulate }
|
|
419
|
-
is_asserted_by { 0 == a.accumulate(:mask_limit => 0) }
|
|
420
|
-
is_asserted_by { 0 == a.accumulate(:mask_limit => 0, :fill_value => -9999) }
|
|
421
|
-
|
|
422
|
-
# ---
|
|
423
|
-
a = CArray.uint8(256) { 1 }
|
|
424
|
-
a[0] = UNDEF
|
|
425
|
-
a[255] = UNDEF
|
|
426
|
-
|
|
427
|
-
is_asserted_by { 254 == a.accumulate() }
|
|
428
|
-
is_asserted_by { 254 == a.accumulate(:mask_limit => 0) }
|
|
429
|
-
is_asserted_by { UNDEF == a.accumulate(:mask_limit => 1) }
|
|
430
|
-
is_asserted_by { UNDEF == a.accumulate(:mask_limit => 2) }
|
|
431
|
-
is_asserted_by { 254 == a.accumulate(:mask_limit => 0, :fill_value => -9999) }
|
|
432
|
-
is_asserted_by { -9999 == a.accumulate(:mask_limit => 1, :fill_value => -9999) }
|
|
433
|
-
is_asserted_by { -9999 == a.accumulate(:mask_limit => 2, :fill_value => -9999) }
|
|
434
|
-
end
|
|
435
|
-
|
|
436
|
-
example "variance" do
|
|
437
|
-
# ---
|
|
438
|
-
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
|
439
|
-
|
|
440
|
-
is_asserted_by { true == (9.16666666666667 - a.variance()) < 0.000001 }
|
|
441
|
-
is_asserted_by { true == (9.16666666666667 - a.variance(:mask_limit=>0)) < 0.000001 }
|
|
442
|
-
is_asserted_by { true == (9.16666666666667 - a.variance(:mask_limit=>0, :fill_value=>-9999)) < 0.000001 }
|
|
443
|
-
|
|
444
|
-
# ---
|
|
445
|
-
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
|
446
|
-
a.mask = 0
|
|
447
|
-
a[0] = UNDEF
|
|
448
|
-
a[9] = UNDEF ### [_, 2, ..., 9,_]
|
|
449
|
-
|
|
450
|
-
is_asserted_by { 6 == a.variance() }
|
|
451
|
-
is_asserted_by { 6 == a.variance(:mask_limit=>0) }
|
|
452
|
-
is_asserted_by { UNDEF == a.variance(:mask_limit=>1) }
|
|
453
|
-
is_asserted_by { UNDEF == a.variance(:mask_limit=>2) }
|
|
454
|
-
is_asserted_by { 6 == a.variance(:mask_limit=>3) }
|
|
455
|
-
is_asserted_by { 6 == a.variance(:mask_limit=>0, :fill_value=>-9999) }
|
|
456
|
-
is_asserted_by { -9999 == a.variance(:mask_limit=>1, :fill_value=>-9999) }
|
|
457
|
-
is_asserted_by { -9999 == a.variance(:mask_limit=>2, :fill_value=>-9999) }
|
|
458
|
-
is_asserted_by { 6 == a.variance(:mask_limit=>3, :fill_value=>-9999) }
|
|
459
|
-
|
|
460
|
-
end
|
|
461
|
-
|
|
462
|
-
example "variancep" do
|
|
463
|
-
# ---
|
|
464
|
-
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
|
465
|
-
|
|
466
|
-
is_asserted_by { true == (8.25 - a.variancep()) < 0.000001 }
|
|
467
|
-
is_asserted_by { true == (8.25 - a.variancep(:mask_limit=>0)) < 0.000001 }
|
|
468
|
-
is_asserted_by { true == (8.25 - a.variancep(:mask_limit=>0, :fill_value=>-9999)) < 0.000001 }
|
|
469
|
-
|
|
470
|
-
# ---
|
|
471
|
-
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
|
472
|
-
a.mask = 0
|
|
473
|
-
a[0] = UNDEF
|
|
474
|
-
a[9] = UNDEF ### [_, 2, ..., 9,_]
|
|
475
|
-
|
|
476
|
-
is_asserted_by { true == (5.25 - a.variancep()) < 0.000001 }
|
|
477
|
-
is_asserted_by { true == (5.25 - a.variancep(:mask_limit=>0)) < 0.000001 }
|
|
478
|
-
is_asserted_by { UNDEF == a.variancep(:mask_limit=>1) }
|
|
479
|
-
is_asserted_by { UNDEF == a.variancep(:mask_limit=>2) }
|
|
480
|
-
is_asserted_by { true == (5.25 - a.variancep(:mask_limit=>3)) < 0.000001 }
|
|
481
|
-
is_asserted_by { true == (5.25 - a.variancep(:mask_limit=>0, :fill_value=>-9999)) < 0.000001 }
|
|
482
|
-
is_asserted_by { -9999 == a.variancep(:mask_limit=>1, :fill_value=>-9999) }
|
|
483
|
-
is_asserted_by { -9999 == a.variancep(:mask_limit=>2, :fill_value=>-9999) }
|
|
484
|
-
is_asserted_by { true == (5.25 - a.variancep(:mask_limit=>3, :fill_value=>-9999)) < 0.000001 }
|
|
485
|
-
end
|
|
486
|
-
|
|
487
|
-
example "prod" do
|
|
488
|
-
# ---
|
|
489
|
-
a = CArray.int32(5).seq!(1) ### [1, 2, ..., 5]
|
|
490
|
-
|
|
491
|
-
is_asserted_by { 120 == a.prod() }
|
|
492
|
-
is_asserted_by { 120 == a.prod(:mask_limit => 0) }
|
|
493
|
-
is_asserted_by { 120 == a.prod(:mask_limit => 0, :fill_value => -9999) }
|
|
494
|
-
|
|
495
|
-
# ---
|
|
496
|
-
a = CArray.int32(5).seq!(1) ### [1, 2, ..., 5]
|
|
497
|
-
a[0] = UNDEF
|
|
498
|
-
a[2] = UNDEF ### [0, 2, _, 4, 5]
|
|
499
|
-
|
|
500
|
-
is_asserted_by { 40 == a.prod() }
|
|
501
|
-
is_asserted_by { 40 == a.prod(:mask_limit => 0) }
|
|
502
|
-
is_asserted_by { UNDEF == a.prod(:mask_limit => 1) }
|
|
503
|
-
is_asserted_by { UNDEF == a.prod(:mask_limit => 2) }
|
|
504
|
-
is_asserted_by { 40 == a.prod(:mask_limit => 3) }
|
|
505
|
-
is_asserted_by { 40 == a.prod(:mask_limit => 0, :fill_value => -9999) }
|
|
506
|
-
is_asserted_by { -9999 == a.prod(:mask_limit => 1, :fill_value => -9999) }
|
|
507
|
-
is_asserted_by { -9999 == a.prod(:mask_limit => 2, :fill_value => -9999) }
|
|
508
|
-
is_asserted_by { 40 == a.prod(:mask_limit => 3, :fill_value => -9999) }
|
|
509
|
-
end
|
|
510
|
-
|
|
511
|
-
example "wsum" do
|
|
512
|
-
|
|
513
|
-
# ---
|
|
514
|
-
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
|
515
|
-
w = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
|
516
|
-
|
|
517
|
-
is_asserted_by { 385 == a.wsum(w) }
|
|
518
|
-
is_asserted_by { 385 == a.wsum(w, 0) }
|
|
519
|
-
is_asserted_by { 385 == a.wsum(w, 0, -9999) }
|
|
520
|
-
|
|
521
|
-
# ---
|
|
522
|
-
a = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
|
523
|
-
w = CArray.int32(10).seq!(1) ### [1, 2, ..., 10]
|
|
524
|
-
a.mask = 0
|
|
525
|
-
w.mask = 0
|
|
526
|
-
a[0] = UNDEF ### [_, 2, ..., 9,10]
|
|
527
|
-
w[9] = UNDEF ### [1, 2, ..., 9,_]
|
|
528
|
-
|
|
529
|
-
# is_asserted_by { 284 == a.wsum(w) }
|
|
530
|
-
# is_asserted_by { UNDEF == a.wsum(w, 0) }
|
|
531
|
-
# is_asserted_by { UNDEF == a.wsum(w, 1) }
|
|
532
|
-
# is_asserted_by { 284 == a.wsum(w, 2) }
|
|
533
|
-
|
|
534
|
-
# is_asserted_by { -9999 == a.wsum(w, 0, -9999) }
|
|
535
|
-
# is_asserted_by { -9999 == a.wsum(w, 1, -9999) }
|
|
536
|
-
# is_asserted_by { 284 == a.wsum(w, 2, -9999) }
|
|
537
|
-
|
|
538
|
-
end
|
|
539
|
-
|
|
540
|
-
example "cumsum" do
|
|
541
|
-
# ---
|
|
542
|
-
a = CArray.int32(10).seq!(1)
|
|
543
|
-
a[2] = UNDEF
|
|
544
|
-
is_asserted_by { CA_DOUBLE([1, 3, 3, 7, 12, 18, 25, 33, 42, 52]) ==
|
|
545
|
-
a.cumsum() }
|
|
546
|
-
is_asserted_by { CA_DOUBLE([1, 3, *([UNDEF]*8)]) ==
|
|
547
|
-
a.cumsum(0) }
|
|
548
|
-
is_asserted_by { CA_DOUBLE([1, 3, *([-9999]*8)]) ==
|
|
549
|
-
a.cumsum(0, -9999) }
|
|
550
|
-
is_asserted_by { CA_DOUBLE([1, 3, 3, 7, 12, 18, 25, 33, 42, 52]) ==
|
|
551
|
-
a.cumsum(1) }
|
|
552
|
-
end
|
|
553
|
-
|
|
554
|
-
example "cumprod" do
|
|
555
|
-
# ---
|
|
556
|
-
a = CArray.int32(5).seq!(1)
|
|
557
|
-
a[2] = UNDEF
|
|
558
|
-
is_asserted_by { CA_DOUBLE([1, 2, 2, 8, 40]) ==
|
|
559
|
-
a.cumprod() }
|
|
560
|
-
is_asserted_by { CA_DOUBLE([1, 2, *([UNDEF]*3)]) ==
|
|
561
|
-
a.cumprod(0) }
|
|
562
|
-
is_asserted_by { CA_DOUBLE([1, 2, *([-9999]*3)]) ==
|
|
563
|
-
a.cumprod(0, -9999) }
|
|
564
|
-
is_asserted_by { CA_DOUBLE([1, 2, 2, 8, 40]) ==
|
|
565
|
-
a.cumprod(1) }
|
|
566
|
-
end
|
|
567
|
-
|
|
568
|
-
example "count_xxx" do
|
|
569
|
-
# TODO
|
|
570
|
-
end
|
|
571
|
-
|
|
572
|
-
example "all_xxx?" do
|
|
573
|
-
# TODO
|
|
574
|
-
end
|
|
575
|
-
|
|
576
|
-
example "any_xxx?" do
|
|
577
|
-
# TODO
|
|
578
|
-
end
|
|
579
|
-
|
|
580
|
-
end
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
require 'carray'
|
|
3
|
-
require "rspec-power_assert"
|
|
4
|
-
|
|
5
|
-
describe "TestMath " do
|
|
6
|
-
|
|
7
|
-
example "zerodiv" do
|
|
8
|
-
zero = CArray.int(3,3) { 0 }
|
|
9
|
-
one = CArray.int(3,3) { 1 }
|
|
10
|
-
expect { 1/zero }.to raise_error(ZeroDivisionError)
|
|
11
|
-
expect { one/zero }.to raise_error(ZeroDivisionError) # div, div!
|
|
12
|
-
expect { one/0 }.to raise_error(ZeroDivisionError)
|
|
13
|
-
expect { one/zero }.to raise_error(ZeroDivisionError)
|
|
14
|
-
expect { one % 0 }.to raise_error(ZeroDivisionError) # mod, mod!
|
|
15
|
-
expect { one % zero }.to raise_error(ZeroDivisionError)
|
|
16
|
-
expect { zero.rcp }.to raise_error(ZeroDivisionError) # rcp!
|
|
17
|
-
expect { zero.rcp_mul(1) }.to raise_error(ZeroDivisionError) # rcp_mul!
|
|
18
|
-
expect { zero.rcp_mul(one) }.to raise_error(ZeroDivisionError)
|
|
19
|
-
expect { 0 ** (-one) }.to raise_error(ZeroDivisionError) # pow, pow!
|
|
20
|
-
expect { zero ** (-one) }.to raise_error(ZeroDivisionError)
|
|
21
|
-
end
|
|
22
|
-
|
|
23
|
-
example "cmp" do
|
|
24
|
-
a = CA_INT([0,1,2,3,4])
|
|
25
|
-
b = CA_INT([4,3,2,1,0])
|
|
26
|
-
|
|
27
|
-
# ---
|
|
28
|
-
is_asserted_by { CA_INT8([-1, -1, 0, 1, 1]) == (a <=> 2) }
|
|
29
|
-
is_asserted_by { CA_INT8([1, 1, 0, -1, -1]) == (2 <=> a) }
|
|
30
|
-
is_asserted_by { CA_INT8([-1, -1, 0, 1, 1]) == (a <=> b) }
|
|
31
|
-
end
|
|
32
|
-
|
|
33
|
-
example "bit_op" do
|
|
34
|
-
a = CArray.int(10).seq!
|
|
35
|
-
|
|
36
|
-
# ---
|
|
37
|
-
is_asserted_by { a.convert {|x| ~x } == (~a) }
|
|
38
|
-
|
|
39
|
-
is_asserted_by { a.convert {|x| x & 1 } == (a & 1) }
|
|
40
|
-
is_asserted_by { (a & 1) == (1 & a) }
|
|
41
|
-
|
|
42
|
-
is_asserted_by { a.convert { |x| x | 1 } == (a | 1) }
|
|
43
|
-
is_asserted_by { (a | 1) == (1 | a) }
|
|
44
|
-
|
|
45
|
-
is_asserted_by { a.convert { |x| x ^ 1 } == (a ^ 1) }
|
|
46
|
-
is_asserted_by { (a ^ 1) == (1 ^ a) }
|
|
47
|
-
|
|
48
|
-
# ---
|
|
49
|
-
is_asserted_by { a.convert { |x| x << 1 } == (a << 1) }
|
|
50
|
-
is_asserted_by { a.convert { |x| 1 << x } == (1 << a) }
|
|
51
|
-
|
|
52
|
-
is_asserted_by { a.convert { |x| x >> 1 } == (a >> 1) }
|
|
53
|
-
is_asserted_by { a.convert { |x| 1 >> x } == (1 >> a) }
|
|
54
|
-
end
|
|
55
|
-
|
|
56
|
-
example "max_min" do
|
|
57
|
-
a = CArray.int(3,3).seq!
|
|
58
|
-
b = a.reverse
|
|
59
|
-
|
|
60
|
-
# ---
|
|
61
|
-
is_asserted_by { CA_INT32([[8,7,6],
|
|
62
|
-
[5,4,5],
|
|
63
|
-
[6,7,8]]) == a.pmax(b) }
|
|
64
|
-
is_asserted_by { CA_INT32([[0,1,2],
|
|
65
|
-
[3,4,3],
|
|
66
|
-
[2,1,0]]) == a.pmin(b) }
|
|
67
|
-
# ---
|
|
68
|
-
is_asserted_by { CA_INT32([[0,0,0],
|
|
69
|
-
[0,0,0],
|
|
70
|
-
[0,0,0]]) == a.pmin(0) }
|
|
71
|
-
is_asserted_by { CA_INT32([[8,8,8],
|
|
72
|
-
[8,8,8],
|
|
73
|
-
[8,8,8]]) == a.pmax(8) }
|
|
74
|
-
# ---
|
|
75
|
-
is_asserted_by { CA_INT32([[0,0,0],
|
|
76
|
-
[0,0,0],
|
|
77
|
-
[0,0,0]]) == CA_INT32(0).pmin(a) }
|
|
78
|
-
is_asserted_by { CA_INT32([[8,8,8],
|
|
79
|
-
[8,8,8],
|
|
80
|
-
[8,8,8]]) == CA_INT32(8).pmax(a) }
|
|
81
|
-
# ---
|
|
82
|
-
is_asserted_by { CA_INT32([[8,7,6],
|
|
83
|
-
[5,4,5],
|
|
84
|
-
[6,7,8]]) == CAMath.max(a, b) }
|
|
85
|
-
is_asserted_by { CA_INT32([[0,1,2],
|
|
86
|
-
[3,4,3],
|
|
87
|
-
[2,1,0]]) == CAMath.min(a, b) }
|
|
88
|
-
# ---
|
|
89
|
-
is_asserted_by { CA_INT32([[0,0,0],
|
|
90
|
-
[0,0,0],
|
|
91
|
-
[0,0,0]]) == CAMath.min(0,a,b,8) }
|
|
92
|
-
is_asserted_by { CA_INT32([[8,8,8],
|
|
93
|
-
[8,8,8],
|
|
94
|
-
[8,8,8]]) == CAMath.max(0,a,b,8) }
|
|
95
|
-
end
|
|
96
|
-
|
|
97
|
-
end
|