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,55 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArrayCAWindow < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_virtual_array
|
9
|
+
a = CArray.int(3,3).seq!
|
10
|
+
b = a.window(-1..1, -1..1)
|
11
|
+
r = b.parent
|
12
|
+
assert_instance_of(CAWindow, b)
|
13
|
+
assert_equal(true, b.virtual?)
|
14
|
+
assert_equal(a, r)
|
15
|
+
end
|
16
|
+
|
17
|
+
|
18
|
+
def test_basic_features
|
19
|
+
# ---
|
20
|
+
a = CArray.int(3,3).seq!
|
21
|
+
b = a.window(-1..1, -1..1)
|
22
|
+
assert_equal(CA_INT([[0,0,0],
|
23
|
+
[0,0,1],
|
24
|
+
[0,3,4]]), b)
|
25
|
+
|
26
|
+
# ---
|
27
|
+
a = CArray.int(3,3).seq!
|
28
|
+
b = a.window(-1..1, -1..1) { UNDEF}
|
29
|
+
_ = UNDEF
|
30
|
+
assert_equal(CA_INT([[_,_,_],
|
31
|
+
[_,0,1],
|
32
|
+
[_,3,4]]), b)
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_invalid_args
|
36
|
+
# ---
|
37
|
+
a = CArray.int(3,3).seq
|
38
|
+
assert_raise(ArgumentError) { a.window(1) }
|
39
|
+
assert_raise(ArgumentError) { a.window([nil]) }
|
40
|
+
assert_raise(ArgumentError) { a.window(nil, [nil,2]) }
|
41
|
+
assert_raise(ArgumentError) { a.window(1..-1, nil) }
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_out_of_index
|
45
|
+
# ---
|
46
|
+
a = CArray.int(3,3).seq
|
47
|
+
i1 = CA_INT([1,2,3])
|
48
|
+
i2 = CA_INT([-4,-3,-2])
|
49
|
+
assert_raise(IndexError) { a[i1,nil] }
|
50
|
+
assert_raise(IndexError) { a[nil,i1] }
|
51
|
+
assert_raise(IndexError) { a[i2,nil] }
|
52
|
+
assert_raise(IndexError) { a[nil,i2] }
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
data/test/test_CAWrap.rb
ADDED
data/test/test_CArray.rb
ADDED
@@ -0,0 +1,228 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCArray < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def assert_carray (ca, type, dim, ary)
|
9
|
+
assert_equal(ca, CArray.new(type, dim){ary})
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_s_new
|
13
|
+
a = CArray.new(CA_INT32, [3, 2, 1]) { 1 }
|
14
|
+
assert_instance_of(CArray, a)
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_s_type
|
18
|
+
a = CArray.int32(3, 3) { 1 }
|
19
|
+
assert_carray(a, CA_INT32, [3,3], 1)
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_equal
|
23
|
+
a = CArray.int32(3, 3) { 0 }
|
24
|
+
b = CArray.int32(3, 3) { 0 }
|
25
|
+
c = CArray.uint32(3, 3) { 0 }
|
26
|
+
d = CArray.uint32(2, 3) { 0 }
|
27
|
+
e = CArray.int32(3, 3) { 1 }
|
28
|
+
assert_equal(a == b, true)
|
29
|
+
assert_equal(a != b, false)
|
30
|
+
assert_equal(a == c, false)
|
31
|
+
assert_equal(a != c, true)
|
32
|
+
assert_equal(a == d, false)
|
33
|
+
assert_equal(a != d, true)
|
34
|
+
assert_equal(a == e, false)
|
35
|
+
assert_equal(a != e, true)
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_clone
|
39
|
+
a = CArray.int32(3, 3)
|
40
|
+
assert_equal(a.clone, a)
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_to_s
|
44
|
+
a = CArray.int8(3, 3) { 1 }
|
45
|
+
assert_equal(a.to_s, "\001"*9)
|
46
|
+
|
47
|
+
a = CArray.int32(3, 3) { 1 }
|
48
|
+
assert_equal(a.to_s, [1].pack("l")*9)
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_to_ca
|
52
|
+
a = CArray.int32(3, 3).seq
|
53
|
+
assert_equal(a.to_ca, a)
|
54
|
+
|
55
|
+
c = CArray.int32(4, 4)
|
56
|
+
c[0..2, 0..2] = a
|
57
|
+
b = c[0..2, 0..2]
|
58
|
+
assert_equal(b.to_ca, b)
|
59
|
+
|
60
|
+
a = CArray.int32(3, 3).seq
|
61
|
+
assert_carray(a[nil, 0].to_ca, CA_INT32, [3], [0,3,6])
|
62
|
+
assert_carray(a[nil, 1].to_ca, CA_INT32, [3], [1,4,7])
|
63
|
+
assert_carray(a[nil, 2].to_ca, CA_INT32, [3], [2,5,8])
|
64
|
+
|
65
|
+
a = CArray.int32(3, 3).seq
|
66
|
+
# assert_carray(a[0, nil].to_ca, CA_INT32, [3], [0,1,2])
|
67
|
+
# assert_carray(a[1, nil].to_ca, CA_INT32, [3], [3,4,5])
|
68
|
+
# assert_carray(a[2, nil].to_ca, CA_INT32, [3], [6,7,8])
|
69
|
+
end
|
70
|
+
|
71
|
+
def test_store_array
|
72
|
+
a = CArray.int32(3, 3){1}
|
73
|
+
b = CArray.int32(3, 3)
|
74
|
+
b[] = [[1, 1, 1], [1, 1, 1], [1, 1, 1]]
|
75
|
+
assert_equal(a, b)
|
76
|
+
end
|
77
|
+
|
78
|
+
def test_seq
|
79
|
+
a = CArray.int32(3, 3)
|
80
|
+
a.seq!
|
81
|
+
assert_carray(a, CA_INT32, [3,3], [
|
82
|
+
[0, 1, 2],
|
83
|
+
[3, 4, 5],
|
84
|
+
[6, 7, 8]
|
85
|
+
])
|
86
|
+
assert_equal(a.seq, a)
|
87
|
+
end
|
88
|
+
|
89
|
+
def test_set_value
|
90
|
+
a = CArray.int32(3, 3)
|
91
|
+
b = CArray.int32(3, 3)
|
92
|
+
|
93
|
+
a[] = 0
|
94
|
+
assert_carray(a, CA_INT32, [3,3], [
|
95
|
+
[0, 0, 0],
|
96
|
+
[0, 0, 0],
|
97
|
+
[0, 0, 0]
|
98
|
+
])
|
99
|
+
|
100
|
+
# reg_point
|
101
|
+
a[] = 0
|
102
|
+
a[1, 1] = 1
|
103
|
+
assert_carray(a, CA_INT32, [3,3], [
|
104
|
+
[0, 0, 0],
|
105
|
+
[0, 1, 0],
|
106
|
+
[0, 0, 0]
|
107
|
+
])
|
108
|
+
|
109
|
+
|
110
|
+
# reg_block : idx_all
|
111
|
+
a[] = 0
|
112
|
+
a[nil, 1] = 1
|
113
|
+
assert_carray(a, CA_INT32, [3,3], [
|
114
|
+
[0, 1, 0],
|
115
|
+
[0, 1, 0],
|
116
|
+
[0, 1, 0]
|
117
|
+
])
|
118
|
+
|
119
|
+
|
120
|
+
# reg_block : idx_block
|
121
|
+
a[] = 0
|
122
|
+
a[0..1, 1] = 1
|
123
|
+
assert_carray(a, CA_INT32, [3,3], [
|
124
|
+
[0, 1, 0],
|
125
|
+
[0, 1, 0],
|
126
|
+
[0, 0, 0]
|
127
|
+
])
|
128
|
+
|
129
|
+
# reg_block : idx_block
|
130
|
+
a[] = 0
|
131
|
+
a[[0..2,2], 1] = 1
|
132
|
+
assert_carray(a, CA_INT32, [3,3], [
|
133
|
+
[0, 1, 0],
|
134
|
+
[0, 0, 0],
|
135
|
+
[0, 1, 0]
|
136
|
+
])
|
137
|
+
end
|
138
|
+
|
139
|
+
def test_set_point
|
140
|
+
a = CArray.int32(3, 3) { 0 }
|
141
|
+
|
142
|
+
a[1, 1] = 1
|
143
|
+
assert_equal(a[1,1], 1)
|
144
|
+
|
145
|
+
end
|
146
|
+
|
147
|
+
def test_set_addr
|
148
|
+
a = CArray.int32(3, 3) { 0 }
|
149
|
+
|
150
|
+
a[4] = 1
|
151
|
+
assert_equal(a[1,1], 1)
|
152
|
+
|
153
|
+
a[3..5] = -1
|
154
|
+
assert_equal(a[1,1], -1)
|
155
|
+
|
156
|
+
a[3..5] = [1,2,3]
|
157
|
+
assert_equal(a[1,1], 2)
|
158
|
+
end
|
159
|
+
|
160
|
+
def test_dump_io ()
|
161
|
+
a = CArray.int32(3, 3).seq!
|
162
|
+
b = CArray.int32(3, 3)
|
163
|
+
open("bintest", "w") { |io| a.dump_binary(io) }
|
164
|
+
open("bintest") { |io| b.load_binary(io) }
|
165
|
+
assert_equal(a, b)
|
166
|
+
|
167
|
+
a = CArray.int32(3, 3).seq!
|
168
|
+
b = CArray.int32(3, 3).seq!
|
169
|
+
open("bintest", "w") { |io| a[0..1, 0..1].dump_binary(io) }
|
170
|
+
open("bintest") { |io| b[0..1, 0..1].load_binary(io) }
|
171
|
+
assert_equal(a, b)
|
172
|
+
ensure
|
173
|
+
File.unlink("bintest")
|
174
|
+
end
|
175
|
+
|
176
|
+
def test_dump_str ()
|
177
|
+
a = CArray.int32(3, 3).seq!
|
178
|
+
b = CArray.int32(3, 3)
|
179
|
+
s = ""
|
180
|
+
a.dump_binary(s)
|
181
|
+
b.load_binary(s)
|
182
|
+
assert_equal(a, b)
|
183
|
+
|
184
|
+
a = CArray.int32(3, 3).seq!
|
185
|
+
b = CArray.int32(3, 3).seq!
|
186
|
+
s = ""
|
187
|
+
a[0..1, 0..1].dump_binary(s)
|
188
|
+
b[0..1, 0..1].load_binary(s)
|
189
|
+
assert_equal(a, b)
|
190
|
+
end
|
191
|
+
|
192
|
+
def test_reverse
|
193
|
+
a = CArray.uint8(100).seq!
|
194
|
+
b = a[-1..0].to_ca
|
195
|
+
assert_equal(a.reverse!, b)
|
196
|
+
end
|
197
|
+
|
198
|
+
def test_stat
|
199
|
+
a = CArray.float32(3,3).seq!(1,2)
|
200
|
+
stddev = Math.sqrt(((a - a.mean)**2).sum/(a.elements-1))
|
201
|
+
|
202
|
+
assert_equal(a.max, 17)
|
203
|
+
assert_equal(a.min, 1)
|
204
|
+
assert_equal(a.sum, 81)
|
205
|
+
assert_equal(a.mean, 9)
|
206
|
+
assert_equal(a.stddev, stddev)
|
207
|
+
|
208
|
+
c = CArray.int32(4,4)
|
209
|
+
c[0..2, 0..2] = a
|
210
|
+
a = c[0..2, 0..2]
|
211
|
+
assert_equal(a.max, 17)
|
212
|
+
assert_equal(a.min, 1)
|
213
|
+
assert_equal(a.sum, 81)
|
214
|
+
assert_equal(a.mean, 9)
|
215
|
+
assert_equal(a.stddev, stddev)
|
216
|
+
end
|
217
|
+
|
218
|
+
def test_ancestors
|
219
|
+
# ---
|
220
|
+
a = CArray.int(3,3).seq!
|
221
|
+
b = a.reshape(9)
|
222
|
+
c = b.reshape(3,3)
|
223
|
+
d = c[0..1,0..1]
|
224
|
+
assert_equal(a, d.root_array)
|
225
|
+
assert_equal([a,b,c,d], d.ancestors)
|
226
|
+
end
|
227
|
+
|
228
|
+
end
|
@@ -0,0 +1,83 @@
|
|
1
|
+
$:.unshift("../lib", "..")
|
2
|
+
|
3
|
+
require 'test/unit'
|
4
|
+
require 'carray'
|
5
|
+
|
6
|
+
class TestCComplex < Test::Unit::TestCase
|
7
|
+
|
8
|
+
def test_new
|
9
|
+
c = CComplex.new(1,2)
|
10
|
+
assert_equal(c.real, 1)
|
11
|
+
assert_equal(c.imag, 2)
|
12
|
+
c = CComplex.new(1)
|
13
|
+
assert_equal(c.real, 1)
|
14
|
+
assert_equal(c.imag, 0)
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_inspect
|
18
|
+
c = CComplex.new(1,2)
|
19
|
+
assert_equal(c.inspect, "1.0+2.0i")
|
20
|
+
c = CComplex.new(1,-2)
|
21
|
+
assert_equal(c.inspect, "1.0-2.0i")
|
22
|
+
c = CComplex.new(1)
|
23
|
+
assert_equal(c.inspect, "1.0+0.0i")
|
24
|
+
c = CComplex.new(0,2)
|
25
|
+
assert_equal(c.inspect, "0.0+2.0i")
|
26
|
+
c = CComplex.new(0,-2)
|
27
|
+
assert_equal(c.inspect, "0.0-2.0i")
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_to_i
|
31
|
+
c = CComplex.new(23.5, 2)
|
32
|
+
assert_raise(NoMethodError) {
|
33
|
+
c.to_i
|
34
|
+
}
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_conj
|
38
|
+
c = CComplex.new(1, 1)
|
39
|
+
d = CComplex.new(1, -1)
|
40
|
+
assert_equal(c.conj, d)
|
41
|
+
assert_equal(d.conj, c)
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_arg
|
45
|
+
c = CComplex.new(1, 1)
|
46
|
+
assert_equal(c.arg, Math::PI/4)
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_abs
|
50
|
+
c = CComplex.new(1, 1)
|
51
|
+
assert_equal(c.abs, Math::sqrt(2))
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_plus
|
55
|
+
a = CComplex.new(1, 1)
|
56
|
+
b = CComplex.new(-1,-1)
|
57
|
+
assert_equal(a + b, 0)
|
58
|
+
end
|
59
|
+
|
60
|
+
def test_minus
|
61
|
+
a = CComplex.new(1, 1)
|
62
|
+
assert_equal(a - a, 0)
|
63
|
+
end
|
64
|
+
|
65
|
+
def test_asterisk
|
66
|
+
a = CComplex.new(1, 1)
|
67
|
+
b = CComplex.new(1, -1)
|
68
|
+
assert_equal(a * b, 2)
|
69
|
+
end
|
70
|
+
|
71
|
+
def test_slash
|
72
|
+
a = CComplex.new(1, 1)
|
73
|
+
b = CComplex.new(1, -1)
|
74
|
+
assert_equal(a / b, CComplex.new(0,1))
|
75
|
+
end
|
76
|
+
|
77
|
+
def test_star2
|
78
|
+
a = CComplex.new(1, 1)
|
79
|
+
b = CComplex.new(1, -1)
|
80
|
+
# assert_equal(a ** 2, 2*CComplex.new(0,1))
|
81
|
+
end
|
82
|
+
|
83
|
+
end
|
@@ -0,0 +1,91 @@
|
|
1
|
+
#
|
2
|
+
# * scalar creation
|
3
|
+
# * scalar?
|
4
|
+
#
|
5
|
+
#
|
6
|
+
#
|
7
|
+
|
8
|
+
$:.unshift("../lib", "..")
|
9
|
+
|
10
|
+
require 'test/unit'
|
11
|
+
require 'carray'
|
12
|
+
|
13
|
+
class TestCScalar < Test::Unit::TestCase
|
14
|
+
|
15
|
+
def test_s_new
|
16
|
+
a = CScalar.int32 { 1 }
|
17
|
+
assert_equal(true, a.scalar?)
|
18
|
+
assert_equal(CA_INT32, a.data_type)
|
19
|
+
assert_equal(1, a.rank)
|
20
|
+
assert_equal(CArray.sizeof(CA_INT32), a.bytes)
|
21
|
+
assert_equal([1], a.dim)
|
22
|
+
assert_equal(1, a.elements)
|
23
|
+
assert_equal(CA_INT32(1), a)
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_ref_scalar
|
27
|
+
a = CScalar.int32 { 0 }
|
28
|
+
assert_equal(true, a.scalar?)
|
29
|
+
assert_equal(true, a[].scalar?)
|
30
|
+
assert_equal(true, a.refer(CA_UINT32).scalar?)
|
31
|
+
assert_equal(true, a.fake(CA_UINT32).scalar?)
|
32
|
+
assert_equal(true, a.field(0,CA_UINT32).scalar?)
|
33
|
+
assert_equal(true, a[a].scalar?)
|
34
|
+
assert_equal(true, a[a.eq(0)].scalar?)
|
35
|
+
assert_equal(true, a[a.eq(1)].scalar?)
|
36
|
+
|
37
|
+
assert_equal(false, a[nil].scalar?)
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_scalar_operation
|
41
|
+
a = CScalar.int32 { 1 }
|
42
|
+
b = CScalar.int32 { 2 }
|
43
|
+
assert_instance_of(CScalar, -a)
|
44
|
+
|
45
|
+
assert_instance_of(CScalar, a.add(b))
|
46
|
+
assert_instance_of(CScalar, a + b)
|
47
|
+
assert_instance_of(CScalar, a < b)
|
48
|
+
|
49
|
+
assert_instance_of(CScalar, a.add(1))
|
50
|
+
assert_instance_of(CScalar, a + 1)
|
51
|
+
assert_instance_of(CScalar, a < 1)
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_scalar_arith
|
55
|
+
a = CScalar.int32 {1}
|
56
|
+
|
57
|
+
a[] = 1
|
58
|
+
a = a + 1
|
59
|
+
assert_equal(2, a[0])
|
60
|
+
|
61
|
+
a[] = 1
|
62
|
+
a = 1 + a
|
63
|
+
assert_equal(2, a[0])
|
64
|
+
|
65
|
+
a[] = 1
|
66
|
+
a = a - 1
|
67
|
+
assert_equal(0, a[0])
|
68
|
+
|
69
|
+
a[] = 1
|
70
|
+
a = 1 - a
|
71
|
+
assert_equal(0, a[0])
|
72
|
+
|
73
|
+
a[] = 1
|
74
|
+
a = 2*a
|
75
|
+
assert_equal(2, a[0])
|
76
|
+
|
77
|
+
a[] = 1
|
78
|
+
a = a*2
|
79
|
+
assert_equal(2, a[0])
|
80
|
+
|
81
|
+
a[] = 4
|
82
|
+
a = a/2
|
83
|
+
assert_equal(2, a[0])
|
84
|
+
|
85
|
+
a[] = 2
|
86
|
+
a = 4/a
|
87
|
+
assert_equal(2, a[0])
|
88
|
+
|
89
|
+
end
|
90
|
+
|
91
|
+
end
|