carray 1.1.4 → 1.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (231) hide show
  1. checksums.yaml +4 -4
  2. data/COPYING +56 -0
  3. data/GPL +340 -0
  4. data/Gemfile +9 -0
  5. data/Gemfile.lock +33 -0
  6. data/LEGAL +50 -0
  7. data/NOTE +73 -0
  8. data/Rakefile +20 -0
  9. data/TODO +5 -0
  10. data/ca_iter_block.c +242 -0
  11. data/ca_iter_dimension.c +287 -0
  12. data/ca_iter_window.c +202 -0
  13. data/ca_obj_array.c +1189 -0
  14. data/ca_obj_bitarray.c +523 -0
  15. data/ca_obj_bitfield.c +636 -0
  16. data/ca_obj_block.c +885 -0
  17. data/ca_obj_fake.c +405 -0
  18. data/ca_obj_farray.c +482 -0
  19. data/ca_obj_field.c +625 -0
  20. data/ca_obj_grid.c +738 -0
  21. data/ca_obj_mapping.c +614 -0
  22. data/ca_obj_object.c +777 -0
  23. data/ca_obj_reduce.c +299 -0
  24. data/ca_obj_refer.c +627 -0
  25. data/ca_obj_repeat.c +640 -0
  26. data/ca_obj_select.c +558 -0
  27. data/ca_obj_shift.c +952 -0
  28. data/ca_obj_transpose.c +582 -0
  29. data/ca_obj_unbound_repeat.c +557 -0
  30. data/ca_obj_window.c +1023 -0
  31. data/carray.h +1381 -0
  32. data/carray_access.c +1798 -0
  33. data/carray_attribute.c +903 -0
  34. data/carray_call_cfunc.c +1107 -0
  35. data/carray_cast.c +1155 -0
  36. data/carray_cast_func.rb +498 -0
  37. data/carray_class.c +132 -0
  38. data/carray_conversion.c +518 -0
  39. data/carray_copy.c +453 -0
  40. data/carray_core.c +1307 -0
  41. data/carray_element.c +572 -0
  42. data/carray_generate.c +681 -0
  43. data/carray_iterator.c +630 -0
  44. data/carray_loop.c +462 -0
  45. data/carray_mask.c +1174 -0
  46. data/carray_math.rb +834 -0
  47. data/carray_numeric.c +257 -0
  48. data/carray_operator.c +582 -0
  49. data/carray_order.c +1040 -0
  50. data/carray_random.c +529 -0
  51. data/carray_sort_addr.c +261 -0
  52. data/carray_stat.c +2102 -0
  53. data/carray_stat_proc.rb +1990 -0
  54. data/carray_test.c +602 -0
  55. data/carray_undef.c +69 -0
  56. data/carray_utils.c +740 -0
  57. data/ext/calculus/carray_calculus.c +792 -0
  58. data/ext/calculus/carray_interp.c +355 -0
  59. data/ext/calculus/extconf.rb +12 -0
  60. data/ext/calculus/lib/autoload/autoload_math_calculus.rb +2 -0
  61. data/ext/calculus/lib/math/calculus.rb +119 -0
  62. data/ext/calculus/lib/math/interp/adapter_interp1d.rb +31 -0
  63. data/ext/dataframe/API.txt +11 -0
  64. data/ext/dataframe/extconf.rb +3 -0
  65. data/ext/dataframe/lib/carray/autoload/autoload_dataframe_dataframe.rb +14 -0
  66. data/ext/dataframe/lib/carray/dataframe/dataframe.rb +1104 -0
  67. data/ext/dataframe/sample/test_uniq_sort.rb +5 -0
  68. data/ext/fortio/extconf.rb +3 -0
  69. data/ext/fortio/lib/carray/autoload/autoload_fortran_format.rb +5 -0
  70. data/ext/fortio/lib/carray/io/fortran_format.rb +43 -0
  71. data/ext/fortio/lib/fortio.rb +3 -0
  72. data/ext/fortio/lib/fortio/fortran_format.rb +603 -0
  73. data/ext/fortio/lib/fortio/fortran_format.tab.rb +536 -0
  74. data/ext/fortio/lib/fortio/fortran_format.y +215 -0
  75. data/ext/fortio/lib/fortio/fortran_namelist.rb +151 -0
  76. data/ext/fortio/lib/fortio/fortran_namelist.tab.rb +470 -0
  77. data/ext/fortio/lib/fortio/fortran_namelist.y +213 -0
  78. data/ext/fortio/lib/fortio/fortran_sequential.rb +345 -0
  79. data/ext/fortio/ruby_fortio.c +182 -0
  80. data/ext/fortio/test/test_H.rb +5 -0
  81. data/ext/fortio/test/test_T.rb +7 -0
  82. data/ext/fortio/test/test_fortran_format.rb +86 -0
  83. data/ext/fortio/test/test_namelist.rb +25 -0
  84. data/ext/fortio/test/test_sequential.rb +13 -0
  85. data/ext/fortio/test/test_sequential2.rb +13 -0
  86. data/ext/fortio/work/test.rb +10 -0
  87. data/ext/fortio/work/test_e.rb +19 -0
  88. data/ext/fortio/work/test_ep.rb +10 -0
  89. data/ext/fortio/work/test_parse.rb +12 -0
  90. data/ext/imagemap/carray_imagemap.c +495 -0
  91. data/ext/imagemap/doc/call_graph.dot +28 -0
  92. data/ext/imagemap/draw.c +567 -0
  93. data/ext/imagemap/extconf.rb +13 -0
  94. data/ext/imagemap/lib/autoload/autoload_graphics_imagemap.rb +1 -0
  95. data/ext/imagemap/lib/graphics/imagemap.rb +273 -0
  96. data/ext/imagemap/lib/image_map.rb +4 -0
  97. data/ext/imagemap/test/swath_index.rb +83 -0
  98. data/ext/imagemap/test/swath_warp.rb +99 -0
  99. data/ext/imagemap/test/test.rb +23 -0
  100. data/ext/imagemap/test/test_image.rb +42 -0
  101. data/ext/imagemap/test/test_line.rb +14 -0
  102. data/ext/imagemap/test/test_rotate.rb +17 -0
  103. data/ext/imagemap/test/test_triangle.rb +20 -0
  104. data/ext/imagemap/test/test_warp.rb +26 -0
  105. data/ext/mathfunc/carray_mathfunc.c +321 -0
  106. data/ext/mathfunc/extconf.rb +18 -0
  107. data/ext/mathfunc/lib/autoload/autoload_math_mathfunc.rb +1 -0
  108. data/ext/mathfunc/lib/math/mathfunc.rb +15 -0
  109. data/ext/mathfunc/test/test_hypot.rb +5 -0
  110. data/ext/mathfunc/test/test_j0.rb +22 -0
  111. data/ext/mathfunc/test/test_jn.rb +8 -0
  112. data/ext/mathfunc/test/test_sph.rb +9 -0
  113. data/ext/narray/README +22 -0
  114. data/ext/narray/ca_wrap_narray.c +491 -0
  115. data/ext/narray/carray_narray.c +21 -0
  116. data/ext/narray/extconf.rb +57 -0
  117. data/ext/narray/lib/autoload/autoload_math_narray.rb +1 -0
  118. data/ext/narray/lib/autoload/autoload_math_narray_miss.rb +11 -0
  119. data/ext/narray/lib/math/narray.rb +17 -0
  120. data/ext/narray/lib/math/narray_miss.rb +45 -0
  121. data/extconf.rb +3 -25
  122. data/lib/carray.rb +28 -0
  123. data/lib/carray/autoload/autoload_base.rb +23 -0
  124. data/lib/carray/autoload/autoload_graphics_gnuplot.rb +2 -0
  125. data/lib/carray/autoload/autoload_io_csv.rb +14 -0
  126. data/lib/carray/autoload/autoload_io_excel.rb +5 -0
  127. data/lib/carray/autoload/autoload_io_imagemagick.rb +6 -0
  128. data/lib/carray/autoload/autoload_io_pg.rb +6 -0
  129. data/lib/carray/autoload/autoload_io_sqlite3.rb +12 -0
  130. data/lib/carray/autoload/autoload_io_table.rb +1 -0
  131. data/lib/carray/autoload/autoload_math_histogram.rb +5 -0
  132. data/lib/carray/autoload/autoload_math_interp.rb +4 -0
  133. data/lib/carray/autoload/autoload_math_recurrence.rb +6 -0
  134. data/lib/carray/autoload/autoload_object_iterator.rb +1 -0
  135. data/lib/carray/autoload/autoload_object_link.rb +1 -0
  136. data/lib/carray/autoload/autoload_object_pack.rb +2 -0
  137. data/lib/carray/base/autoload.rb +94 -0
  138. data/lib/carray/base/basic.rb +1051 -0
  139. data/lib/carray/base/inspect.rb +252 -0
  140. data/lib/carray/base/iterator.rb +367 -0
  141. data/lib/carray/base/math.rb +403 -0
  142. data/lib/carray/base/obsolete.rb +93 -0
  143. data/lib/carray/base/serialize.rb +260 -0
  144. data/lib/carray/base/struct.rb +634 -0
  145. data/lib/carray/graphics/gnuplot.rb +2116 -0
  146. data/lib/carray/info.rb +112 -0
  147. data/lib/carray/io/csv.rb +560 -0
  148. data/lib/carray/io/excel.rb +26 -0
  149. data/lib/carray/io/imagemagick.rb +231 -0
  150. data/lib/carray/io/pg.rb +101 -0
  151. data/lib/carray/io/sqlite3.rb +202 -0
  152. data/lib/carray/io/table.rb +77 -0
  153. data/lib/carray/math/histogram.rb +179 -0
  154. data/lib/carray/math/interp.rb +57 -0
  155. data/lib/carray/math/interp/adapter_gsl_spline.rb +47 -0
  156. data/lib/carray/math/recurrence.rb +95 -0
  157. data/lib/carray/mkmf.rb +145 -0
  158. data/lib/carray/object/ca_obj_iterator.rb +52 -0
  159. data/lib/carray/object/ca_obj_link.rb +52 -0
  160. data/lib/carray/object/ca_obj_pack.rb +101 -0
  161. data/mkmath.rb +731 -0
  162. data/mt19937ar.c +182 -0
  163. data/mt19937ar.h +86 -0
  164. data/rdoc_main.rb +27 -0
  165. data/rdoc_math.rb +5 -0
  166. data/rdoc_stat.rb +31 -0
  167. data/ruby_carray.c +242 -0
  168. data/ruby_ccomplex.c +497 -0
  169. data/ruby_float_func.c +83 -0
  170. data/spec/CABlockIterator/CABlockIterator_spec.rb +113 -0
  171. data/spec/CArray/bug/store_spec.rb +27 -0
  172. data/spec/CArray/index/repeat_spec.rb +10 -0
  173. data/spec/CArray/method/eq_spec.rb +80 -0
  174. data/spec/CArray/method/is_nan_spec.rb +12 -0
  175. data/spec/CArray/method/ne_spec.rb +18 -0
  176. data/spec/CArray/method/round_spec.rb +11 -0
  177. data/spec/CArray/object/_attribute_spec.rb +32 -0
  178. data/spec/CArray/object/s_new_spec.rb +31 -0
  179. data/spec/CArray/serialize/Serialization_spec.rb +89 -0
  180. data/spec/spec_all.rb +11 -0
  181. data/test/test_ALL.rb +50 -0
  182. data/test/test_CABitfield.rb +59 -0
  183. data/test/test_CABlock.rb +208 -0
  184. data/test/test_CAField.rb +40 -0
  185. data/test/test_CAGrid.rb +76 -0
  186. data/test/test_CAMapping.rb +106 -0
  187. data/test/test_CAMmap.rb +11 -0
  188. data/test/test_CARefer.rb +94 -0
  189. data/test/test_CARepeat.rb +66 -0
  190. data/test/test_CASelect.rb +23 -0
  191. data/test/test_CAShift.rb +17 -0
  192. data/test/test_CATranspose.rb +61 -0
  193. data/test/test_CAVirtual.rb +214 -0
  194. data/test/test_CAWindow.rb +55 -0
  195. data/test/test_CAWrap.rb +9 -0
  196. data/test/test_CArray.rb +228 -0
  197. data/test/test_CComplex.rb +83 -0
  198. data/test/test_CScalar.rb +91 -0
  199. data/test/test_attribute.rb +281 -0
  200. data/test/test_block_iterator.rb +17 -0
  201. data/test/test_boolean.rb +99 -0
  202. data/test/test_cast.rb +33 -0
  203. data/test/test_class.rb +85 -0
  204. data/test/test_complex.rb +43 -0
  205. data/test/test_composite.rb +125 -0
  206. data/test/test_convert.rb +79 -0
  207. data/test/test_copy.rb +141 -0
  208. data/test/test_creation.rb +85 -0
  209. data/test/test_element.rb +146 -0
  210. data/test/test_extream.rb +55 -0
  211. data/test/test_generate.rb +75 -0
  212. data/test/test_index.rb +71 -0
  213. data/test/test_mask.rb +578 -0
  214. data/test/test_math.rb +98 -0
  215. data/test/test_narray.rb +64 -0
  216. data/test/test_order.rb +147 -0
  217. data/test/test_random.rb +15 -0
  218. data/test/test_ref_store.rb +211 -0
  219. data/test/test_stat.rb +414 -0
  220. data/test/test_struct.rb +72 -0
  221. data/test/test_virtual.rb +49 -0
  222. data/utils/ca_ase.rb +21 -0
  223. data/utils/ca_methods.rb +15 -0
  224. data/utils/cast_checker.rb +30 -0
  225. data/utils/create_rdoc.sh +9 -0
  226. data/utils/diff_method.rb +52 -0
  227. data/utils/extract_rdoc.rb +27 -0
  228. data/utils/make_tgz.sh +3 -0
  229. data/utils/remove_resource_fork.sh +5 -0
  230. data/version.h +3 -3
  231. metadata +266 -1
@@ -0,0 +1,43 @@
1
+ $:.unshift("../lib", "..")
2
+
3
+ require 'test/unit'
4
+ require 'carray'
5
+
6
+ class TestComplex < Test::Unit::TestCase
7
+
8
+ def test_complex
9
+ a = CArray.complex(3,3) { 1 + 2*CI }
10
+ assert_equal(a.real, CArray.float(3,3) { 1 })
11
+ assert_equal(a.imag, CArray.float(3,3) { 2 })
12
+ a.real[] = -1
13
+ a.imag[] = -2
14
+ assert_equal(a.real, CArray.float(3,3) { -1 })
15
+ assert_equal(a.imag, CArray.float(3,3) { -2 })
16
+ end
17
+
18
+ def test_dcomplex
19
+ a = CArray.dcomplex(3,3) { 1 + 2*CI }
20
+ assert_equal(a.real, CArray.double(3,3) { 1 })
21
+ assert_equal(a.imag, CArray.double(3,3) { 2 })
22
+ a.real = -1
23
+ a.imag = -2
24
+ assert_equal(a.real, CArray.double(3,3) { -1 })
25
+ assert_equal(a.imag, CArray.double(3,3) { -2 })
26
+ end
27
+
28
+ def test_conj
29
+ a = CArray.complex(3,3) { 1 + 2*CI }
30
+ a.conj!
31
+ assert_equal(a.real, CArray.float(3,3) { 1 })
32
+ assert_equal(a.imag, CArray.float(3,3) { -2 })
33
+ end
34
+
35
+ def test_arg
36
+ a = CArray.complex(3,3) { 1 + 2*CI }
37
+ a.conj!
38
+ assert_equal(a.real, CArray.float(3,3) { 1 })
39
+ assert_equal(a.imag, CArray.float(3,3) { -2 })
40
+ end
41
+
42
+
43
+ end
@@ -0,0 +1,125 @@
1
+ $:.unshift("../lib", "..")
2
+
3
+ require 'test/unit'
4
+ require 'carray'
5
+
6
+ class TestCArrayComposite < Test::Unit::TestCase
7
+
8
+ def test_combine
9
+ a1 = CArray.int32(2,2){1}
10
+ a2 = CArray.int32(2,2){2}
11
+ a3 = CArray.int32(2,2){3}
12
+ a4 = CArray.int32(2,2){4}
13
+ list = [a1, a2, a3, a4]
14
+
15
+ # ---
16
+ y = CA_INT32([
17
+ [1,1],
18
+ [1,1],
19
+ [2,2],
20
+ [2,2],
21
+ [3,3],
22
+ [3,3],
23
+ [4,4],
24
+ [4,4],
25
+ ])
26
+ x = CArray.combine(CA_INT32, [4], list, 0)
27
+ assert_equal(y, x)
28
+
29
+ # ---
30
+ y = CA_INT32([
31
+ [1,1,2,2,3,3,4,4],
32
+ [1,1,2,2,3,3,4,4]
33
+ ])
34
+ x = CArray.combine(CA_INT32, [4], list, -1)
35
+ assert_equal(y, x)
36
+ x = CArray.combine(CA_INT32, [4], list, 1)
37
+ assert_equal(y, x)
38
+
39
+ # ---
40
+ y = CA_INT32([
41
+ [1,1,2,2],
42
+ [1,1,2,2],
43
+ [3,3,4,4],
44
+ [3,3,4,4],
45
+ ])
46
+ x = CArray.combine(CA_INT32, [2,2], list, 0)
47
+ assert_equal(y, x)
48
+ x = CArray.combine(CA_INT32, [2,2], list, -1)
49
+ assert_equal(y, x)
50
+
51
+ assert_raise(RuntimeError) {
52
+ CArray.combine(CA_INT32, [2,2], list, 1)
53
+ }
54
+
55
+ end
56
+
57
+ def test_composite
58
+ a1 = CArray.int32(2,2){1}
59
+ a2 = CArray.int32(2,2){2}
60
+ a3 = CArray.int32(2,2){3}
61
+ a4 = CArray.int32(2,2){4}
62
+ list = [a1, a2, a3, a4]
63
+
64
+ # ---
65
+ y = CA_INT32([ [ [ 1, 1 ],
66
+ [ 1, 1 ] ],
67
+ [ [ 2, 2 ],
68
+ [ 2, 2 ] ],
69
+ [ [ 3, 3 ],
70
+ [ 3, 3 ] ],
71
+ [ [ 4, 4 ],
72
+ [ 4, 4 ] ] ])
73
+ x = CArray.composite(CA_INT32, [4], list, 0)
74
+ assert_equal(y, x)
75
+
76
+ # ---
77
+ y = CA_INT32([ [ [ 1, 2, 3, 4 ],
78
+ [ 1, 2, 3, 4 ] ],
79
+ [ [ 1, 2, 3, 4 ],
80
+ [ 1, 2, 3, 4 ] ] ])
81
+ x = CArray.composite(CA_INT32, [4], list, -1)
82
+ assert_equal(y, x)
83
+
84
+ # ---
85
+ y = CA_INT32([ [ [ [ 1, 1 ],
86
+ [ 1, 1 ] ],
87
+ [ [ 2, 2 ],
88
+ [ 2, 2 ] ] ],
89
+ [ [ [ 3, 3 ],
90
+ [ 3, 3 ] ],
91
+ [ [ 4, 4 ],
92
+ [ 4, 4 ] ] ] ])
93
+ x = CArray.composite(CA_INT32, [2,2], list, 0)
94
+ assert_equal(y, x)
95
+
96
+ # ---
97
+ y = CA_INT32([ [ [ [ 1, 1 ],
98
+ [ 2, 2 ] ],
99
+ [ [ 3, 3 ],
100
+ [ 4, 4 ] ] ],
101
+ [ [ [ 1, 1 ],
102
+ [ 2, 2 ] ],
103
+ [ [ 3, 3 ],
104
+ [ 4, 4 ] ] ] ])
105
+ x = CArray.composite(CA_INT32, [2,2], list, 1)
106
+ assert_equal(y, x)
107
+
108
+ # ---
109
+ y = CA_INT32([ [ [ [ 1, 2 ],
110
+ [ 3, 4 ] ],
111
+ [ [ 1, 2 ],
112
+ [ 3, 4 ] ] ],
113
+ [ [ [ 1, 2 ],
114
+ [ 3, 4 ] ],
115
+ [ [ 1, 2 ],
116
+ [ 3, 4 ] ] ] ])
117
+ x = CArray.composite(CA_INT32, [2,2], list, 2)
118
+ assert_equal(y, x)
119
+
120
+ x = CArray.composite(CA_INT32, [2,2], list, -1)
121
+ assert_equal(y, x)
122
+
123
+ end
124
+
125
+ end
@@ -0,0 +1,79 @@
1
+ #$:.unshift("../lib", "..")
2
+
3
+ require 'test/unit'
4
+ require 'carray'
5
+
6
+ class TestCArray < Test::Unit::TestCase
7
+
8
+ def test_conversion
9
+ assert_equal(CA_INT32(1), CScalar.int32{1})
10
+ assert_equal(CA_INT32([1]), CArray.int32(1){[1]})
11
+ assert_equal(CA_INT32([[0,1],[2,3]]), CArray.int32(2,2).seq!)
12
+ assert_raise(TypeError) { CA_INT32([1,[1,2]]) }
13
+ end
14
+
15
+ def test_s_span
16
+ a = CArray.span(CA_FLOAT32, 0..2, 0.5)
17
+ assert_equal(a, CA_FLOAT32([0,0.5,1,1.5,2]))
18
+ a = CArray.span(CA_FLOAT32, 0...2, 0.5)
19
+ assert_equal(a, CA_FLOAT32([0,0.5,1,1.5]))
20
+ end
21
+
22
+ def test_wrap_readonly
23
+ a = CArray.wrap_readonly([[1,2,3],[4,5,6],[7,8,9]], CA_INT32)
24
+ assert_equal(CA_INT32([[1,2,3],[4,5,6],[7,8,9]]), a)
25
+ end
26
+
27
+ def test_compact
28
+ a = CArray.int(4,1,3,1,2,1).seq!
29
+ b = CArray.int(4,3,2).seq!
30
+
31
+ assert_equal(b, a.compacted)
32
+ assert_equal(CARefer, a.compacted.class)
33
+ assert_equal(b, a.compact)
34
+ assert_equal(CArray, a.compact.class)
35
+ end
36
+
37
+ def test_to_a
38
+ # ---
39
+ a = CArray.int(3).seq!
40
+ assert_equal([ 0,1,2 ], a.to_a)
41
+
42
+ # ---
43
+ a = CArray.int(3,3).seq!
44
+ assert_equal([ [0,1,2], [3,4,5], [6,7,8] ], a.to_a)
45
+ end
46
+
47
+ def test_convert
48
+ # ---
49
+ a = CArray.int(3).seq!
50
+ if RUBY_VERSION >= "1.9.0"
51
+ b = a.convert(CA_OBJECT) {|x| (x+"a".ord).chr }
52
+ else
53
+ b = a.convert(CA_OBJECT) {|x| (x+?a).chr }
54
+ end
55
+ assert_equal(CA_OBJECT(["a","b","c"]), b)
56
+ end
57
+
58
+ def test_map
59
+ # ---
60
+ a = CArray.int(3).seq!
61
+ if RUBY_VERSION >="1.9.0"
62
+ b = a.map {|x| (x+"a".ord).chr }
63
+ else
64
+ b = a.map {|x| (x+?a).chr }
65
+ end
66
+ assert_equal([ "a","b","c" ], b)
67
+
68
+ # ---
69
+ a = CArray.int(3,3).seq!
70
+ if RUBY_VERSION >= "1.9.0"
71
+ b = a.map {|x| (x+"a".ord).chr }
72
+ else
73
+ b = a.map {|x| (x+?a).chr }
74
+ end
75
+ assert_equal([ ["a","b","c"], ["d","e","f"], ["g","h","i"] ], b)
76
+ end
77
+
78
+
79
+ end
@@ -0,0 +1,141 @@
1
+ require "test/unit"
2
+
3
+ require "carray"
4
+
5
+ class TestCArrayCopy < Test::Unit::TestCase
6
+
7
+ def test_to_ca
8
+ #
9
+ a = CArray.int32(3,3).seq
10
+ b = a.to_ca
11
+ assert_equal(CA_INT32([ [ 0, 1, 2 ],
12
+ [ 3, 4, 5 ],
13
+ [ 6, 7, 8 ] ]), a)
14
+ assert_equal(a, b)
15
+
16
+ # mask does not be templated
17
+ a = CArray.int32(3,3).seq
18
+ a[1,1] = UNDEF
19
+ b = a.to_ca
20
+ assert_equal(CA_INT32([ [ 0, 1, 2 ],
21
+ [ 3, UNDEF, 5 ],
22
+ [ 6, 7, 8 ] ]), a)
23
+ assert_equal(a, b)
24
+ end
25
+
26
+ def test_template
27
+ #
28
+ a = CArray.int32(3,3).seq
29
+ b = a.template {1}
30
+ assert_equal(CA_INT32([ [ 0, 1, 2 ],
31
+ [ 3, 4, 5 ],
32
+ [ 6, 7, 8 ] ]), a)
33
+ assert_equal(CA_INT32([ [ 1, 1, 1 ],
34
+ [ 1, 1, 1 ],
35
+ [ 1, 1, 1 ] ]), b)
36
+
37
+ # mask does not be templated
38
+ a = CArray.int32(3,3).seq
39
+ a[1,1] = UNDEF
40
+ b = a.template {1}
41
+ assert_equal(CA_INT32([ [ 0, 1, 2 ],
42
+ [ 3, UNDEF, 5 ],
43
+ [ 6, 7, 8 ] ]), a)
44
+ assert_equal(CA_INT32([ [ 1, 1, 1 ],
45
+ [ 1, 1, 1 ],
46
+ [ 1, 1, 1 ] ]), b)
47
+ end
48
+
49
+ def test_to_type
50
+ #
51
+ a = CArray.int8(3,3).seq
52
+ b = a.int32
53
+ assert_equal(CA_INT8([ [ 0, 1, 2 ],
54
+ [ 3, 4, 5 ],
55
+ [ 6, 7, 8 ] ]), a)
56
+ assert_equal(CA_INT32([ [ 0, 1, 2 ],
57
+ [ 3, 4, 5 ],
58
+ [ 6, 7, 8 ] ]), b)
59
+
60
+
61
+ #
62
+ a = CArray.int8(3,3).seq
63
+ a[1,1] = UNDEF
64
+ b = a.int32
65
+ assert_equal(CA_INT8([ [ 0, 1, 2 ],
66
+ [ 3, UNDEF, 5 ],
67
+ [ 6, 7, 8 ] ]), a)
68
+ assert_equal(CA_INT32([ [ 0, 1, 2 ],
69
+ [ 3, UNDEF, 5 ],
70
+ [ 6, 7, 8 ] ]), b)
71
+ end
72
+
73
+ def test_convert
74
+ #
75
+ a = CArray.int8(3,3).seq
76
+ b = a.convert(CA_INT32) {|x| 2*x}
77
+ assert_equal(CA_INT8([ [ 0, 1, 2 ],
78
+ [ 3, 4, 5 ],
79
+ [ 6, 7, 8 ] ]), a)
80
+ assert_equal(CA_INT32([ [ 0, 2, 4 ],
81
+ [ 6, 8, 10 ],
82
+ [ 12, 14, 16 ] ]), b)
83
+
84
+ #
85
+ a = CArray.int8(3,3).seq
86
+ a[1,1] = UNDEF
87
+ b = a.convert(CA_INT32) {|x| 2 * x }
88
+ assert_equal(CA_INT8([ [ 0, 1, 2 ],
89
+ [ 3, UNDEF, 5 ],
90
+ [ 6, 7, 8 ] ]), a)
91
+ assert_equal(CA_INT32([ [ 0, 2, 4 ],
92
+ [ 6, UNDEF, 10 ],
93
+ [ 12, 14, 16 ] ]), b)
94
+ end
95
+
96
+ def test_transform
97
+ #
98
+ a = CArray.uint8(2,4) { 0xff }
99
+ b = a.refer(CA_UINT16, [2,2]).to_ca
100
+ assert_equal(CA_UINT8([ [ 255, 255, 255, 255 ],
101
+ [ 255, 255, 255, 255 ] ]), a)
102
+ assert_equal(CA_UINT16([ [ 65535, 65535 ],
103
+ [ 65535, 65535 ] ]), b)
104
+ end
105
+
106
+ def test_to_a
107
+ #
108
+ a = CArray.int32(3,3).seq
109
+ b = a.to_a
110
+ assert_equal([ [ 0, 1, 2 ],
111
+ [ 3, 4, 5 ],
112
+ [ 6, 7, 8 ] ], b)
113
+
114
+ # mask does not be templated
115
+ a = CArray.int32(3,3).seq
116
+ a[1,1] = UNDEF
117
+ b = a.to_a
118
+ assert_equal([ [ 0, 1, 2 ],
119
+ [ 3, UNDEF, 5 ],
120
+ [ 6, 7, 8 ] ], b)
121
+ end
122
+
123
+ def test_map
124
+ #
125
+ a = CArray.int32(3,3).seq
126
+ b = a.map{|x| x.to_s }
127
+ b.to_a
128
+ assert_equal([ [ "0", "1", "2" ],
129
+ [ "3", "4", "5" ],
130
+ [ "6", "7", "8" ] ], b)
131
+
132
+ # mask does not be templated
133
+ a = CArray.int32(3,3).seq
134
+ a[1,1] = UNDEF
135
+ b = a.map{|x| x.to_s }
136
+ assert_equal([ [ "0", "1", "2" ],
137
+ [ "3", UNDEF, "5" ],
138
+ [ "6", "7", "8" ] ], b)
139
+ end
140
+
141
+ end
@@ -0,0 +1,85 @@
1
+ $:.unshift("../lib", "..")
2
+
3
+ require 'test/unit'
4
+ require 'carray'
5
+
6
+ class TestCArrayCreation < Test::Unit::TestCase
7
+
8
+ def test_s_new_uint8
9
+ # ---
10
+ ca = CArray.new(CA_UINT8, [3, 2, 1])
11
+ assert_instance_of(CArray, ca)
12
+ assert_equal(CA_UINT8, ca.data_type)
13
+ assert_equal([3,2,1], ca.dim)
14
+
15
+ # ---
16
+ ca = CArray.new(:uint8, [3, 2, 1])
17
+ assert_instance_of(CArray, ca)
18
+ assert_equal(CA_UINT8, ca.data_type)
19
+ assert_equal([3,2,1], ca.dim)
20
+
21
+ # ---
22
+ ca = CArray.uint8(3, 2, 1)
23
+ assert_instance_of(CArray, ca)
24
+ assert_equal(CA_UINT8, ca.data_type)
25
+ assert_equal([3,2,1], ca.dim)
26
+ end
27
+
28
+ def test_s_new_fixlen
29
+ # ---
30
+ ca = CArray.new(CA_FIXLEN, [3, 2, 1], :bytes=>10)
31
+ assert_instance_of(CArray, ca)
32
+ assert_equal(CA_FIXLEN, ca.data_type)
33
+ assert_equal(10, ca.bytes)
34
+ assert_equal([3,2,1], ca.dim)
35
+
36
+ # ---
37
+ ca = CArray.new(:fixlen, [3, 2, 1], :bytes=>10)
38
+ assert_instance_of(CArray, ca)
39
+ assert_equal(CA_FIXLEN, ca.data_type)
40
+ assert_equal(10, ca.bytes)
41
+ assert_equal([3,2,1], ca.dim)
42
+
43
+ # ---
44
+ ca = CArray.fixlen(3, 2, 1, :bytes=>10)
45
+ assert_instance_of(CArray, ca)
46
+ assert_equal(CA_FIXLEN, ca.data_type)
47
+ assert_equal(10, ca.bytes)
48
+ assert_equal([3,2,1], ca.dim)
49
+ end
50
+
51
+ def test_s_new_various_types
52
+ # ---
53
+ data_type_list = [
54
+ CA_BOOLEAN,
55
+ CA_UINT8, CA_INT8,
56
+ CA_UINT16, CA_INT16,
57
+ CA_UINT32, CA_INT32,
58
+ CA_FLOAT32, CA_FLOAT64,
59
+ CA_OBJECT
60
+ ]
61
+ data_type_list.each do |type|
62
+ ca = CArray.new(type, [3, 2, 1])
63
+ assert_instance_of(CArray, ca)
64
+ assert_equal(type, ca.data_type)
65
+ end
66
+
67
+ # ---
68
+ data_type_name_list = [
69
+ "boolean",
70
+ "uint8", "int8",
71
+ "uint16", "int16",
72
+ "uint32", "int32",
73
+ "float32", "float64",
74
+ "object"
75
+ ]
76
+ data_type_name_list.each do |type|
77
+ ca = CArray.send(type, 3, 2, 1)
78
+ assert_instance_of(CArray, ca)
79
+ assert_equal(type, ca.data_type_name)
80
+ end
81
+
82
+ end
83
+
84
+
85
+ end