carray 1.3.7 → 1.5.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (295) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +32 -0
  3. data/LICENSE +22 -0
  4. data/NEWS.md +78 -0
  5. data/README.md +43 -30
  6. data/Rakefile +31 -0
  7. data/TODO.md +17 -0
  8. data/carray.gemspec +21 -31
  9. data/{ca_iter_block.c → ext/ca_iter_block.c} +16 -18
  10. data/{ca_iter_dimension.c → ext/ca_iter_dimension.c} +20 -21
  11. data/{ca_iter_window.c → ext/ca_iter_window.c} +12 -14
  12. data/{ca_obj_array.c → ext/ca_obj_array.c} +451 -176
  13. data/{ca_obj_bitarray.c → ext/ca_obj_bitarray.c} +18 -23
  14. data/{ca_obj_bitfield.c → ext/ca_obj_bitfield.c} +12 -16
  15. data/{ca_obj_block.c → ext/ca_obj_block.c} +47 -54
  16. data/{ca_obj_fake.c → ext/ca_obj_fake.c} +10 -12
  17. data/{ca_obj_farray.c → ext/ca_obj_farray.c} +21 -23
  18. data/{ca_obj_field.c → ext/ca_obj_field.c} +30 -32
  19. data/{ca_obj_grid.c → ext/ca_obj_grid.c} +32 -33
  20. data/{ca_obj_mapping.c → ext/ca_obj_mapping.c} +11 -13
  21. data/{ca_obj_object.c → ext/ca_obj_object.c} +40 -42
  22. data/{ca_obj_reduce.c → ext/ca_obj_reduce.c} +3 -5
  23. data/{ca_obj_refer.c → ext/ca_obj_refer.c} +44 -48
  24. data/{ca_obj_repeat.c → ext/ca_obj_repeat.c} +45 -47
  25. data/{ca_obj_select.c → ext/ca_obj_select.c} +4 -6
  26. data/{ca_obj_shift.c → ext/ca_obj_shift.c} +26 -28
  27. data/{ca_obj_transpose.c → ext/ca_obj_transpose.c} +26 -28
  28. data/{ca_obj_unbound_repeat.c → ext/ca_obj_unbound_repeat.c} +106 -160
  29. data/{ca_obj_window.c → ext/ca_obj_window.c} +33 -35
  30. data/{carray.h → ext/carray.h} +90 -59
  31. data/{carray_access.c → ext/carray_access.c} +244 -109
  32. data/{carray_attribute.c → ext/carray_attribute.c} +161 -207
  33. data/{carray_call_cfunc.c → ext/carray_call_cfunc.c} +1 -3
  34. data/{carray_cast.c → ext/carray_cast.c} +350 -149
  35. data/{carray_cast_func.rb → ext/carray_cast_func.rb} +1 -2
  36. data/{carray_class.c → ext/carray_class.c} +28 -36
  37. data/{carray_conversion.c → ext/carray_conversion.c} +65 -70
  38. data/{carray_copy.c → ext/carray_copy.c} +34 -50
  39. data/{carray_core.c → ext/carray_core.c} +75 -62
  40. data/ext/carray_data_type.c +66 -0
  41. data/{carray_element.c → ext/carray_element.c} +34 -53
  42. data/{carray_generate.c → ext/carray_generate.c} +137 -50
  43. data/{carray_iterator.c → ext/carray_iterator.c} +53 -53
  44. data/{carray_loop.c → ext/carray_loop.c} +77 -106
  45. data/{carray_mask.c → ext/carray_mask.c} +105 -114
  46. data/{carray_math.rb → ext/carray_math.rb} +47 -31
  47. data/ext/{mathfunc/carray_mathfunc.c → carray_mathfunc.c} +1 -3
  48. data/{carray_numeric.c → ext/carray_numeric.c} +43 -46
  49. data/{carray_operator.c → ext/carray_operator.c} +72 -36
  50. data/{carray_order.c → ext/carray_order.c} +232 -217
  51. data/{carray_sort_addr.c → ext/carray_sort_addr.c} +14 -21
  52. data/{carray_stat.c → ext/carray_stat.c} +6 -8
  53. data/{carray_stat_proc.rb → ext/carray_stat_proc.rb} +25 -27
  54. data/{carray_test.c → ext/carray_test.c} +59 -51
  55. data/{carray_undef.c → ext/carray_undef.c} +1 -11
  56. data/{carray_utils.c → ext/carray_utils.c} +12 -4
  57. data/{extconf.rb → ext/extconf.rb} +6 -7
  58. data/{mkmath.rb → ext/mkmath.rb} +14 -4
  59. data/{ruby_carray.c → ext/ruby_carray.c} +20 -8
  60. data/{ruby_ccomplex.c → ext/ruby_ccomplex.c} +2 -4
  61. data/{ruby_float_func.c → ext/ruby_float_func.c} +1 -3
  62. data/ext/version.h +16 -0
  63. data/{version.rb → ext/version.rb} +0 -0
  64. data/lib/carray.rb +52 -10
  65. data/lib/carray/{base/autoload.rb → autoload.rb} +48 -8
  66. data/lib/carray/autoload/autoload_base.rb +1 -5
  67. data/lib/carray/autoload/autoload_gem_cairo.rb +9 -0
  68. data/lib/carray/autoload/autoload_gem_ffi.rb +9 -0
  69. data/lib/carray/autoload/autoload_gem_gnuplot.rb +2 -0
  70. data/lib/carray/autoload/autoload_gem_io_csv.rb +14 -0
  71. data/lib/carray/autoload/autoload_gem_io_pg.rb +6 -0
  72. data/lib/carray/autoload/autoload_gem_io_sqlite3.rb +12 -0
  73. data/lib/carray/autoload/autoload_gem_narray.rb +10 -0
  74. data/lib/carray/autoload/autoload_gem_numo_narray.rb +15 -0
  75. data/lib/carray/autoload/autoload_gem_opencv.rb +16 -0
  76. data/lib/carray/autoload/autoload_gem_random.rb +8 -0
  77. data/lib/carray/autoload/autoload_gem_rmagick.rb +23 -0
  78. data/lib/carray/autoload/{autoload_graphics_zimg.rb → autoload_gem_zimg.rb} +0 -0
  79. data/lib/carray/basic.rb +191 -0
  80. data/lib/carray/broadcast.rb +101 -0
  81. data/lib/carray/compose.rb +315 -0
  82. data/lib/carray/construct.rb +484 -0
  83. data/lib/carray/convert.rb +115 -0
  84. data/lib/carray/info.rb +1 -3
  85. data/lib/carray/{base/inspect.rb → inspect.rb} +9 -11
  86. data/lib/carray/io/imagemagick.rb +2 -4
  87. data/lib/carray/{base/iterator.rb → iterator.rb} +6 -6
  88. data/lib/carray/mask.rb +102 -0
  89. data/lib/carray/{base/math.rb → math.rb} +21 -53
  90. data/lib/carray/math/histogram.rb +8 -10
  91. data/lib/carray/math/recurrence.rb +1 -3
  92. data/lib/carray/mkmf.rb +9 -3
  93. data/lib/carray/object/ca_obj_iterator.rb +1 -3
  94. data/lib/carray/object/ca_obj_link.rb +1 -3
  95. data/lib/carray/object/ca_obj_pack.rb +9 -11
  96. data/lib/carray/obsolete.rb +256 -0
  97. data/lib/carray/ordering.rb +181 -0
  98. data/lib/carray/{base/serialize.rb → serialize.rb} +50 -66
  99. data/lib/carray/string.rb +188 -0
  100. data/lib/carray/{base/struct.rb → struct.rb} +19 -21
  101. data/lib/carray/{io/table.rb → table.rb} +1 -10
  102. data/lib/carray/testing.rb +51 -0
  103. data/lib/carray/time.rb +76 -0
  104. data/lib/carray/transform.rb +109 -0
  105. data/misc/Methods.ja.md +182 -0
  106. data/{NOTE → misc/NOTE} +16 -38
  107. data/spec/Classes/CABitfield_spec.rb +58 -0
  108. data/spec/Classes/CABlockIterator_spec.rb +114 -0
  109. data/spec/Classes/CABlock_spec.rb +205 -0
  110. data/spec/Classes/CAField_spec.rb +39 -0
  111. data/spec/Classes/CAGrid_spec.rb +75 -0
  112. data/spec/Classes/CAMap_spec.rb +0 -0
  113. data/{test/test_CAMapping.rb → spec/Classes/CAMapping_spec.rb} +35 -36
  114. data/spec/Classes/CAObject_attribute_spec.rb +33 -0
  115. data/spec/Classes/CAObject_spec.rb +33 -0
  116. data/spec/Classes/CARefer_spec.rb +93 -0
  117. data/spec/Classes/CARepeat_spec.rb +65 -0
  118. data/spec/Classes/CASelect_spec.rb +22 -0
  119. data/spec/Classes/CAShift_spec.rb +16 -0
  120. data/spec/Classes/CAStruct_spec.rb +71 -0
  121. data/{test/test_CATranspose.rb → spec/Classes/CATranspose_spec.rb} +20 -21
  122. data/spec/Classes/CAUnboudRepeat_spec.rb +102 -0
  123. data/spec/Classes/CAWindow_spec.rb +54 -0
  124. data/spec/Classes/CAWrap_spec.rb +8 -0
  125. data/{test/test_CArray.rb → spec/Classes/CArray_spec.rb} +48 -92
  126. data/spec/Classes/CScalar_spec.rb +55 -0
  127. data/spec/Features/feature_130_spec.rb +19 -0
  128. data/spec/Features/feature_attributes_spec.rb +280 -0
  129. data/spec/Features/feature_boolean_spec.rb +98 -0
  130. data/spec/Features/feature_broadcast.rb +116 -0
  131. data/spec/Features/feature_cast_function.rb +19 -0
  132. data/spec/Features/feature_cast_spec.rb +33 -0
  133. data/spec/Features/feature_class_spec.rb +84 -0
  134. data/spec/Features/feature_complex_spec.rb +42 -0
  135. data/{test/test_composite.rb → spec/Features/feature_composite_spec.rb} +17 -18
  136. data/spec/Features/feature_convert_spec.rb +46 -0
  137. data/spec/Features/feature_copy_spec.rb +123 -0
  138. data/spec/Features/feature_creation_spec.rb +84 -0
  139. data/spec/Features/feature_element_spec.rb +144 -0
  140. data/spec/Features/feature_extream_spec.rb +54 -0
  141. data/spec/Features/feature_generate_spec.rb +74 -0
  142. data/spec/Features/feature_index_spec.rb +69 -0
  143. data/spec/Features/feature_mask_spec.rb +580 -0
  144. data/spec/Features/feature_math_spec.rb +97 -0
  145. data/spec/Features/feature_order_spec.rb +146 -0
  146. data/spec/Features/feature_ref_store_spec.rb +209 -0
  147. data/spec/Features/feature_serialization_spec.rb +125 -0
  148. data/spec/Features/feature_stat_spec.rb +397 -0
  149. data/spec/Features/feature_virtual_spec.rb +48 -0
  150. data/spec/Features/method_eq_spec.rb +81 -0
  151. data/spec/Features/method_is_nan_spec.rb +12 -0
  152. data/spec/Features/method_map_spec.rb +54 -0
  153. data/spec/Features/method_max_with.rb +20 -0
  154. data/spec/Features/method_min_with.rb +19 -0
  155. data/spec/Features/method_ne_spec.rb +18 -0
  156. data/spec/Features/method_project_spec.rb +188 -0
  157. data/spec/Features/method_ref_spec.rb +27 -0
  158. data/spec/Features/method_round_spec.rb +11 -0
  159. data/spec/Features/method_s_linspace_spec.rb +48 -0
  160. data/spec/Features/method_s_span_spec.rb +14 -0
  161. data/spec/Features/method_seq_spec.rb +47 -0
  162. data/spec/Features/method_sort_with.rb +43 -0
  163. data/spec/Features/method_sorted_with.rb +29 -0
  164. data/spec/Features/method_span_spec.rb +42 -0
  165. data/spec/Features/method_wrap_readonly_spec.rb +43 -0
  166. data/{test → spec/UnitTest}/test_CAVirtual.rb +0 -0
  167. data/spec/spec_all.rb +0 -1
  168. data/utils/convert_test.rb +73 -0
  169. data/utils/{extract_rdoc.rb → extract_yard.rb} +7 -12
  170. data/{devel → utils}/guess_shape.rb +0 -0
  171. data/utils/{diff_method.rb → monkey_patch_methods.rb} +17 -7
  172. metadata +171 -298
  173. data/COPYING +0 -56
  174. data/GPL +0 -340
  175. data/Gemfile +0 -8
  176. data/Gemfile.lock +0 -33
  177. data/LEGAL +0 -50
  178. data/TODO +0 -5
  179. data/carray_random.c +0 -531
  180. data/ext/calculus/carray_calculus.c +0 -931
  181. data/ext/calculus/carray_interp.c +0 -358
  182. data/ext/calculus/extconf.rb +0 -12
  183. data/ext/calculus/lib/autoload/autoload_math_calculus.rb +0 -2
  184. data/ext/calculus/lib/math/calculus.rb +0 -119
  185. data/ext/calculus/lib/math/interp/adapter_interp1d.rb +0 -31
  186. data/ext/fortio/extconf.rb +0 -3
  187. data/ext/fortio/lib/carray/autoload/autoload_fortran_format.rb +0 -5
  188. data/ext/fortio/lib/carray/io/fortran_format.rb +0 -43
  189. data/ext/fortio/lib/fortio.rb +0 -3
  190. data/ext/fortio/lib/fortio/fortran_format.rb +0 -605
  191. data/ext/fortio/lib/fortio/fortran_format.tab.rb +0 -536
  192. data/ext/fortio/lib/fortio/fortran_format.y +0 -215
  193. data/ext/fortio/lib/fortio/fortran_namelist.rb +0 -151
  194. data/ext/fortio/lib/fortio/fortran_namelist.tab.rb +0 -470
  195. data/ext/fortio/lib/fortio/fortran_namelist.y +0 -213
  196. data/ext/fortio/lib/fortio/fortran_sequential.rb +0 -345
  197. data/ext/fortio/ruby_fortio.c +0 -182
  198. data/ext/fortio/test/test_H.rb +0 -5
  199. data/ext/fortio/test/test_T.rb +0 -7
  200. data/ext/fortio/test/test_fortran_format.rb +0 -86
  201. data/ext/fortio/test/test_namelist.rb +0 -25
  202. data/ext/fortio/test/test_namelist_write.rb +0 -10
  203. data/ext/fortio/test/test_sequential.rb +0 -13
  204. data/ext/fortio/test/test_sequential2.rb +0 -13
  205. data/ext/fortio/work/test.rb +0 -10
  206. data/ext/fortio/work/test_e.rb +0 -19
  207. data/ext/fortio/work/test_ep.rb +0 -10
  208. data/ext/fortio/work/test_parse.rb +0 -12
  209. data/ext/mathfunc/extconf.rb +0 -18
  210. data/ext/mathfunc/lib/autoload/autoload_math_mathfunc.rb +0 -1
  211. data/ext/mathfunc/lib/math/mathfunc.rb +0 -15
  212. data/ext/mathfunc/test/test_hypot.rb +0 -5
  213. data/ext/mathfunc/test/test_j0.rb +0 -22
  214. data/ext/mathfunc/test/test_jn.rb +0 -8
  215. data/ext/mathfunc/test/test_sph.rb +0 -9
  216. data/ext/narray/README +0 -22
  217. data/ext/narray/ca_wrap_narray.c +0 -500
  218. data/ext/narray/carray_narray.c +0 -21
  219. data/ext/narray/extconf.rb +0 -57
  220. data/ext/narray/lib/autoload/autoload_math_narray.rb +0 -1
  221. data/ext/narray/lib/autoload/autoload_math_narray_miss.rb +0 -11
  222. data/ext/narray/lib/math/narray.rb +0 -17
  223. data/ext/narray/lib/math/narray_miss.rb +0 -45
  224. data/lib/carray/autoload/autoload_graphics_gnuplot.rb +0 -2
  225. data/lib/carray/autoload/autoload_io_csv.rb +0 -14
  226. data/lib/carray/autoload/autoload_io_numo.rb +0 -9
  227. data/lib/carray/autoload/autoload_io_pg.rb +0 -6
  228. data/lib/carray/autoload/autoload_io_sqlite3.rb +0 -12
  229. data/lib/carray/autoload/autoload_io_table.rb +0 -1
  230. data/lib/carray/autoload/autoload_math_interp.rb +0 -4
  231. data/lib/carray/base/basic.rb +0 -1090
  232. data/lib/carray/base/obsolete.rb +0 -131
  233. data/lib/carray/graphics/gnuplot.rb +0 -2141
  234. data/lib/carray/graphics/zimg.rb +0 -296
  235. data/lib/carray/io/csv.rb +0 -572
  236. data/lib/carray/io/numo.rb +0 -52
  237. data/lib/carray/io/pg.rb +0 -101
  238. data/lib/carray/io/sqlite3.rb +0 -215
  239. data/lib/carray/math/interp.rb +0 -57
  240. data/lib/carray/math/interp/adapter_gsl_spline.rb +0 -47
  241. data/mt19937ar.c +0 -182
  242. data/mt19937ar.h +0 -86
  243. data/rdoc_main.rb +0 -27
  244. data/rdoc_math.rb +0 -5
  245. data/rdoc_stat.rb +0 -31
  246. data/spec/CABlockIterator/CABlockIterator_spec.rb +0 -113
  247. data/spec/CArray/bug/store_spec.rb +0 -27
  248. data/spec/CArray/index/repeat_spec.rb +0 -10
  249. data/spec/CArray/method/eq_spec.rb +0 -80
  250. data/spec/CArray/method/is_nan_spec.rb +0 -12
  251. data/spec/CArray/method/ne_spec.rb +0 -18
  252. data/spec/CArray/method/round_spec.rb +0 -11
  253. data/spec/CArray/object/_attribute_spec.rb +0 -32
  254. data/spec/CArray/object/s_new_spec.rb +0 -31
  255. data/spec/CArray/serialize/Serialization_spec.rb +0 -89
  256. data/test/test_130.rb +0 -23
  257. data/test/test_ALL.rb +0 -51
  258. data/test/test_CABitfield.rb +0 -59
  259. data/test/test_CABlock.rb +0 -208
  260. data/test/test_CAField.rb +0 -40
  261. data/test/test_CAGrid.rb +0 -76
  262. data/test/test_CAMmap.rb +0 -11
  263. data/test/test_CARefer.rb +0 -94
  264. data/test/test_CARepeat.rb +0 -66
  265. data/test/test_CASelect.rb +0 -23
  266. data/test/test_CAShift.rb +0 -17
  267. data/test/test_CAWindow.rb +0 -55
  268. data/test/test_CAWrap.rb +0 -9
  269. data/test/test_CComplex.rb +0 -83
  270. data/test/test_CScalar.rb +0 -91
  271. data/test/test_attribute.rb +0 -281
  272. data/test/test_block_iterator.rb +0 -17
  273. data/test/test_boolean.rb +0 -99
  274. data/test/test_cast.rb +0 -33
  275. data/test/test_class.rb +0 -85
  276. data/test/test_complex.rb +0 -43
  277. data/test/test_convert.rb +0 -79
  278. data/test/test_copy.rb +0 -141
  279. data/test/test_creation.rb +0 -85
  280. data/test/test_element.rb +0 -146
  281. data/test/test_extream.rb +0 -55
  282. data/test/test_generate.rb +0 -75
  283. data/test/test_index.rb +0 -71
  284. data/test/test_mask.rb +0 -578
  285. data/test/test_math.rb +0 -98
  286. data/test/test_narray.rb +0 -64
  287. data/test/test_order.rb +0 -147
  288. data/test/test_random.rb +0 -15
  289. data/test/test_ref_store.rb +0 -211
  290. data/test/test_stat.rb +0 -414
  291. data/test/test_struct.rb +0 -72
  292. data/test/test_virtual.rb +0 -49
  293. data/utils/create_rdoc.sh +0 -9
  294. data/utils/make_tgz.sh +0 -3
  295. data/version.h +0 -18
@@ -1,182 +0,0 @@
1
- /* ---------------------------------------------------------------------------
2
-
3
- carray/carray_fortio.c
4
-
5
- This file is part of Ruby/CArray extension library.
6
- You can redistribute it and/or modify it under the terms of
7
- the Ruby Licence.
8
-
9
- Copyright (C) 2005 Hiroki Motoyoshi
10
-
11
- ---------------------------------------------------------------------------- */
12
-
13
- #include "ruby.h"
14
- #include <math.h>
15
-
16
- static int
17
- read_F (char *buf, int buflen, int scale, int length, int prec, double *a)
18
- {
19
- char fmt[128];
20
- int status;
21
- if ( ! strchr(buf, '.') ) {
22
- int tmp = 0;
23
- snprintf(fmt, 128, "%%%i", length);
24
- status = sscanf(buf, fmt, &tmp);
25
- *a = tmp * pow(10, -prec);
26
- }
27
- else {
28
- snprintf(fmt, 128, "%%%i.%if", length, prec);
29
- status = sscanf(buf, fmt, a);
30
- }
31
- return status;
32
- }
33
-
34
- static VALUE
35
- rb_ff_read_F (VALUE mod, VALUE vbuffer, VALUE vscale, VALUE vlength, VALUE vprec)
36
- {
37
- double val;
38
- int status;
39
- status = read_F(StringValuePtr(vbuffer), (int) RSTRING_LEN(vbuffer),
40
- NUM2INT(vscale), NUM2INT(vlength), NUM2INT(vprec), &val);
41
- if ( ! status ) {
42
- rb_raise(rb_eRuntimeError, "invalid string for F descriptor");
43
- }
44
- return rb_float_new(val);
45
- }
46
-
47
- static int
48
- write_F (char *buf, int buflen, int plus, int scale, int length, int prec, double a)
49
- {
50
- char fmt[128];
51
- if ( plus ) {
52
- snprintf(fmt, 128, "%%+%i.%if", length, prec);
53
- }
54
- else {
55
- snprintf(fmt, 128, "%%%i.%if", length, prec);
56
- }
57
- if ( scale == 0 ) {
58
- return snprintf(buf, buflen, fmt, a);
59
- }
60
- else {
61
- return snprintf(buf, buflen, fmt, a * pow(10, scale));
62
- }
63
- }
64
-
65
- static VALUE
66
- rb_ff_write_F (VALUE mod, VALUE vsign, VALUE vscale, VALUE vlength, VALUE vprec, VALUE va)
67
- {
68
- int length = NUM2INT(vlength);
69
- char buf[256];
70
- if ( length > 255 ) {
71
- rb_raise(rb_eRuntimeError, "too long decimal format for FortranFormat");
72
- }
73
- write_F(buf, 255,
74
- RTEST(vsign), NUM2INT(vscale), length, NUM2INT(vprec), NUM2DBL(va));
75
- return rb_str_new2(buf);
76
- }
77
-
78
-
79
- static int
80
- write_E (char *buf, int buflen, int plus, int scale, int length, int prec, int iexp, double a)
81
- {
82
- char fmt[128];
83
- int prec0;
84
- int e, sign = 1;
85
- prec0 = ( 1 - scale < 0 ) ? prec - scale + 1 : prec;
86
- sign = 1;
87
- if ( a < 0 ) {
88
- e = floor(log10(-a))+1;
89
- sign = -1;
90
- }
91
- if ( a > 0 ) {
92
- e = floor(log10(a))+1;
93
- }
94
- else {
95
- e = 0;
96
- }
97
- if ( prec0 == 0 ) {
98
- if ( plus ) {
99
- snprintf(fmt, 128, "%%+%i.0f.E%%+0%ii", length-iexp-3, iexp+1);
100
- }
101
- else {
102
- snprintf(fmt, 128, "%%%i.0f.E%%+0%ii", length-iexp-3, iexp+1);
103
- }
104
- }
105
- else {
106
- if ( plus ) {
107
- snprintf(fmt, 128, "%%+%i.%ifE%%+0%ii", length-iexp-2, prec0, iexp+1);
108
- }
109
- else {
110
- snprintf(fmt, 128, "%%%i.%ifE%%+0%ii", length-iexp-2, prec0, iexp+1);
111
- }
112
- }
113
- return snprintf(buf, buflen, fmt, sign * a * pow(10,scale-e), e-scale);
114
- }
115
-
116
- static VALUE
117
- rb_ff_write_E (VALUE mod, VALUE vsign, VALUE vscale, VALUE vlength, VALUE vprec, VALUE vexp, VALUE va)
118
- {
119
- int length = NUM2INT(vlength);
120
- int iexp = NIL_P(vexp) ? 2 : NUM2INT(vexp);
121
- char buf[256];
122
- if ( length > 255 ) {
123
- rb_raise(rb_eRuntimeError, "too long decimal format for FortranFormat");
124
- }
125
- write_E(buf, 255,
126
- RTEST(vsign), NUM2INT(vscale), length, NUM2INT(vprec), iexp, NUM2DBL(va));
127
- return rb_str_new2(buf);
128
- }
129
-
130
- static int
131
- write_GF (char *buf, int buflen, int plus, int length, int prec, int iexp, double a)
132
- {
133
- int e;
134
- if ( a < 0 ) {
135
- e = floor(log10(-a))+1;
136
- }
137
- if ( a > 0 ) {
138
- e = floor(log10(a))+1;
139
- }
140
- else {
141
- e = 0;
142
- }
143
- write_E(buf, 255, plus, e, length, prec-1, iexp, a);
144
- memset(buf+(length-iexp-2), ' ', iexp+2);
145
- return 1;
146
- }
147
-
148
- static VALUE
149
- rb_ff_write_G (VALUE mod, VALUE vsign, VALUE vscale, VALUE vlength, VALUE vprec, VALUE vexp, VALUE va)
150
- {
151
- int length = NUM2INT(vlength);
152
- int iprec = NUM2INT(vprec);
153
- int iexp = NIL_P(vexp) ? 2 : NUM2INT(vexp);
154
- double val = NUM2DBL(va);
155
- char buf[256];
156
- if ( length > 255 ) {
157
- rb_raise(rb_eRuntimeError, "too long decimal format for FortranFormat");
158
- }
159
- if ( ( fabs(val) <= 0.1 ) ||
160
- ( fabs(val) >= pow(10, iprec) ) ) {
161
- write_E(buf, 255,
162
- RTEST(vsign), NUM2INT(vscale), length, iprec, iexp, val);
163
- }
164
- else {
165
- write_GF(buf, 255, RTEST(vsign), length, iprec, iexp, val);
166
- }
167
- return rb_str_new2(buf);
168
- }
169
-
170
- void
171
- Init_fortio_ext ()
172
- {
173
- VALUE rb_cFF = rb_define_class("FortranFormat", rb_cObject);
174
- rb_define_singleton_method(rb_cFF, "read_F", rb_ff_read_F, 4);
175
- rb_define_singleton_method(rb_cFF, "write_F", rb_ff_write_F, 5);
176
- rb_define_singleton_method(rb_cFF, "write_E", rb_ff_write_E, 6);
177
- rb_define_singleton_method(rb_cFF, "write_G", rb_ff_write_G, 6);
178
- }
179
-
180
-
181
-
182
-
@@ -1,5 +0,0 @@
1
- require "fortio"
2
-
3
- p FortranFormat.new("((5(5Hhello)$))")
4
-
5
- puts fortran_format("(2(5(5Hhello))$)")
@@ -1,7 +0,0 @@
1
- require "fortio"
2
-
3
- fortran_format_write(STDOUT, "(TR12,A1)", "a")
4
- fortran_format_write(STDOUT, "(TR12,A1,TL5,A1,TL3,A1)", "a", "b", "c")
5
- fortran_format_write(STDOUT, "(TR12,A1,T5,A1,T3,A1)", "a", "b", "c")
6
-
7
- p FortranFormat.new("(A12)")
@@ -1,86 +0,0 @@
1
- require 'fortio'
2
-
3
- include Math
4
-
5
- #F77 = "ifort"
6
- F77 = "gfortran"
7
- #F77 = "g95"
8
- #F77 = "g77"
9
-
10
- def f77_compile_and_run (source)
11
- output = nil
12
- begin
13
- open("test.f", "w") { |io|
14
- io.write(source)
15
- }
16
- system("#{F77} test.f")
17
- output = `./a.out`.chomp
18
- ensure
19
- File.unlink("test.f")
20
- File.unlink("a.out")
21
- end
22
- end
23
-
24
- [
25
- ["F12.3", 10.0, nil],
26
- ["2F12.3", [10.0,11.0], nil],
27
- ["E12.2", 10.0, nil],
28
- ["2E12.2", [10.0,11.0], nil],
29
- ["2PE12.2", 10.0, nil],
30
- ["2P2E12.2", [10.0,11.0], nil],
31
- ["2G12.2", [10.0,11.0], nil],
32
- ["2PG12.2", 10.0, nil],
33
- ["2PG12.2E3",10.0, nil],
34
- ["2PG12.2", 1234567890.0, nil],
35
- ["2PG12.2E3",1234567890.0, nil],
36
- # ---
37
- ["F15.8", PI, "#{PI}D0"],
38
- ["E15.8", PI, "#{PI}D0"],
39
- ["2PE15.8", PI, "#{PI}D0"],
40
- # ---
41
- ["F10.8", PI, "#{PI}D0"],
42
- ["E10.8", PI, "#{PI}D0"],
43
- ["2PE10.8", PI, "#{PI}D0"],
44
- # ---
45
- ["I4.3", 123456, nil],
46
- ["I6.5", 123, nil],
47
- ["I6.5", 123, nil],
48
- ["I7.6", 123456, nil],
49
- ["I6", 123456, nil],
50
- # ---
51
- ["SPI6", 123456, nil],
52
- ["SPI7", 123456, nil],
53
- ["SPF12.4", 123456.0, nil],
54
- ["SPE12.4E3", 123456.0, nil],
55
- ["SPG12.4E3", 123456.0, nil],
56
- ["SPG12.4E3", 123.0, nil],
57
- ["TR2SPSG12.4E3", 123.0, nil],
58
- # ---
59
- ["L1", true, ".TRUE."],
60
- ["L1", false, ".FALSE."],
61
- ["L2", true, ".TRUE."],
62
- ["L2", false, ".FALSE."],
63
- ["L4", true, ".TRUE."],
64
- ["L4", false, ".FALSE."],
65
- # ---
66
- ["A1", "a", "'a'"],
67
- ["A2", "ab", "'ab'"],
68
- ["5Hhello", nil, nil],
69
- # ---
70
- ["/", "\n", ""],
71
- ["2/", "\n\n", ""],
72
- ].each do |fmt, rval, fval|
73
- fort_out = f77_compile_and_run %{
74
- write(6, '(#{fmt})') #{[fval||rval||[]].flatten.join(',')}
75
- end
76
- }
77
- ruby_out = fortran_format(fmt+"$", *rval)
78
- puts "-------------------------------------------------------------"
79
- printf("format : %s\n", fmt)
80
- printf("fortran input : %s\n", [fval||rval].flatten.join(','))
81
- printf("ruby input : %s\n", [rval].flatten.join(","))
82
- printf("fortran output : %s\n", fort_out.inspect)
83
- printf("ruby output : %s\n", ruby_out.inspect)
84
- printf("comparison : %s\n", fort_out == ruby_out)
85
- end
86
-
@@ -1,25 +0,0 @@
1
- require "fortio"
2
- require "pp"
3
-
4
- text =<<END
5
- aaaa bbbb cccc
6
- dddd eeee ffff
7
- &name
8
- c=30.d0,
9
- a=10.d0,
10
- b=20.d0,
11
- d(1:3) = 1,2,3
12
- &end
13
- &foo
14
- c=10.d+32,
15
- a=50.d0,
16
- b=90.d0,
17
- d(1:5) = 3*4,,3
18
- e="hello""world!"
19
- &end
20
- END
21
-
22
- pp nml = fortran_namelist_read(text, "name", {:d=>CArray.int(3)})
23
- pp nml = fortran_namelist_read(text, "foo", {:d=>CArray.int(5)})
24
-
25
- puts fortran_namelist("bar", nml)
@@ -1,10 +0,0 @@
1
- require "fortio"
2
-
3
- a = {
4
- :array => [1,2,3],
5
- :x => 1,
6
- :y => 2.2
7
- }
8
-
9
- fortran_namelist_write(STDOUT, "a", a)
10
- fortran_namelist_write(STDOUT, "a", a)
@@ -1,13 +0,0 @@
1
- require "fortio"
2
-
3
- fs = FortranSequential.open("test.dat", "w", :endian=>"big")
4
- rec = fs.record
5
- rec.write("d4l", [1.2, 2008, 6, 21, 9])
6
- fs.close
7
-
8
- fs = FortranSequential.open("test.dat", "r", :endian=>"big")
9
- rec = fs.record
10
- p rec.read("d4l")
11
- fs.close
12
-
13
- File.unlink("test.dat")
@@ -1,13 +0,0 @@
1
- require "fortio"
2
-
3
- a = CArray.float(3).seq!
4
-
5
- fortran_sequential_open("test.dat", "w") { |io|
6
- io.write(a)
7
- }
8
-
9
- fortran_sequential_open("test.dat") { |io|
10
- p io.read.unpack("e3")
11
- }
12
-
13
- File.unlink("test.dat")
@@ -1,10 +0,0 @@
1
- require "carray"
2
-
3
- text =<<END
4
- 1 2 3 4
5
- 5 6 7 8
6
- END
7
-
8
- ca = CArray.from_fortran_format("2I3,2F3.0/2F3.0,2I3", text)
9
-
10
- ca.to_fortran_format("2I3,1P,2E10.2E3", STDOUT)
@@ -1,19 +0,0 @@
1
- require "fortio"
2
-
3
- p f = FortranFormat("4(2P,3E6.2E4,2I2.1)$")
4
- p f.count_args
5
- p fortran_format("2P,E10.2E4,$", 0.000012345)
6
- p f = FortranFormat("2(E10.2E4,',')")
7
- p fortran_format("2(E10.2E4,',')", 0.000012345, 2.0)
8
- p f = FortranFormat('2(-2PG15.5 4X2(I2)/)')
9
- puts fortran_format(f, 3.1415926,2,4, 2.71828,3,5)
10
-
11
- p f = FortranFormat('3P,4(G15.5/)')
12
- p f.count_args
13
- puts fortran_format(f, 0.1, 0.11, 10**5-1, 10**5)
14
-
15
- p f = FortranFormat('A10,"""\'|\'"""')
16
- p f.count_args
17
- puts fortran_format(f, "hello")
18
-
19
- puts fortran_format_read("12345", "F5.2")
@@ -1,10 +0,0 @@
1
- require "fortio"
2
-
3
- fmt200 = FortranFormat.new("(3pe13.6,-2p2e13.6)")
4
-
5
- p fortran_format_write("", fmt200, *[0.000123456]*3)
6
-
7
- p text = fortran_format_write("", "3pf10.5", 3)
8
- p fortran_format_read(text, "3pf10.5")
9
-
10
- p fortran_format_write("", "g13.5", 893)
@@ -1,12 +0,0 @@
1
- require "carray"
2
- require "fortio"
3
-
4
- head = " 1440 721 0.00 90.00 0.2500 31 0.18712E+00 0.44215E-01 0.35660E-01 0.30406E-01 0.34569E-01 0.17713E-01 0.25666E-01 0.26762E-01 0.10912E-01 0.10623E-01 0.62775E-02 0.66029E-02 0.11870E+00 0.47465E-02 0.86580E-01 0.33813E-02 0.10799E+00 0.22265E-02 0.76236E-01 0.65007E-01 0.51308E-01 0.58308E-01 0.43458E-01 0.21357E-01 0.89651E-02 0.10000E-01 0.10000E-01 0.10000E-01 0.10000E-01 0.10000E-02 0.10000E+01"
5
-
6
- ffp = FortranFormat.new('2X,2i6,2f8.2,f8.4,i3,31e12.5')
7
- p list = ffp.read(head)
8
- ffp.write(test="", *list)
9
-
10
- p head
11
- p test
12
- p head == test
@@ -1,18 +0,0 @@
1
- require "mkmf"
2
-
3
- dir_config("carray", "../..", "../..")
4
-
5
- have_header("carray.h")
6
-
7
- if /cygwin|mingw/ =~ RUBY_PLATFORM
8
- have_library("carray")
9
- end
10
-
11
- have_header("tgmath.h")
12
-
13
- have_func("atan2", "math.h")
14
- have_func("hypot", "math.h")
15
- have_func("lgamma", "math.h")
16
- have_func("expm1", "math.h")
17
-
18
- create_makefile("carray/carray_mathfunc")
@@ -1 +0,0 @@
1
- require "carray/math/mathfunc"
@@ -1,15 +0,0 @@
1
- # ----------------------------------------------------------------------------
2
- #
3
- # lib/carray/graphics/imagemap.rb
4
- #
5
- # This file is part of Ruby/CArray extension library.
6
- # You can redistribute it and/or modify it under the terms of
7
- # the Ruby Licence.
8
- #
9
- # Copyright (C) 2005 Hiroki Motoyoshi
10
- #
11
- # ----------------------------------------------------------------------------
12
-
13
- require "carray/carray_mathfunc"
14
-
15
-