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,497 @@
1
+ /* ---------------------------------------------------------------------------
2
+
3
+ ruby_ccomplex.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 "carray.h"
15
+ #include "math.h"
16
+
17
+ #ifdef HAVE_COMPLEX_H
18
+
19
+ #if RUBY_VERSION_CODE >= 190
20
+ #else
21
+ static VALUE rb_cComplex;
22
+ #endif
23
+
24
+ VALUE rb_cCComplex;
25
+
26
+ VALUE rb_ccomplex_new2 (double re, double im);
27
+
28
+ #if RUBY_VERSION_CODE >= 220
29
+ struct RComplex {
30
+ struct RBasic basic;
31
+ const VALUE real;
32
+ const VALUE imag;
33
+ };
34
+ static double complex
35
+ rb_complex_to_cval (VALUE self)
36
+ {
37
+ struct RComplex *dat;
38
+ double re, im;
39
+ dat = ((struct RComplex *)(self));
40
+ re = NUM2DBL(dat->real);
41
+ im = NUM2DBL(dat->imag);
42
+ return re + I * im;
43
+ }
44
+ #else
45
+ #if RUBY_VERSION_CODE >= 190
46
+ static double complex
47
+ rb_complex_to_cval (VALUE self)
48
+ {
49
+ double re = NUM2DBL(RCOMPLEX(self)->real);
50
+ double im = NUM2DBL(RCOMPLEX(self)->imag);
51
+ return re + I * im;
52
+ }
53
+ #else
54
+ static double complex
55
+ rb_complex_to_cval (VALUE self)
56
+ {
57
+ double re = NUM2DBL(rb_ivar_get(self, rb_intern("@real")));
58
+ double im = NUM2DBL(rb_ivar_get(self, rb_intern("@image")));
59
+ return re + I * im;
60
+ }
61
+ static VALUE
62
+ rb_Complex (VALUE x, VALUE y)
63
+ {
64
+ return rb_funcall(rb_cComplex, rb_intern("new"), 2, x, y);
65
+ }
66
+ #endif
67
+ #endif
68
+
69
+ double complex
70
+ rb_num2cc(VALUE num)
71
+ {
72
+ if ( rb_obj_is_kind_of(num, rb_cCComplex) ) {
73
+ double complex *cp;
74
+ Data_Get_Struct(num, double complex, cp);
75
+ return *cp;
76
+ }
77
+ switch ( TYPE(num) ) {
78
+ case T_FIXNUM:
79
+ return (double complex) FIX2LONG(num);
80
+ case T_BIGNUM:
81
+ return (double complex) rb_big2dbl(num);
82
+ case T_FLOAT:
83
+ return (double complex) NUM2DBL(num);
84
+ }
85
+ if ( rb_obj_is_kind_of(num, rb_cComplex) ) {
86
+ return rb_complex_to_cval(num);
87
+ }
88
+ if ( rb_respond_to(num, rb_intern("to_c")) ) {
89
+ return rb_complex_to_cval(rb_funcall(num, rb_intern("to_c"), 0));
90
+ }
91
+ if ( rb_respond_to(num, rb_intern("to_cc")) ) {
92
+ return rb_funcall(num, rb_intern("to_cc"), 0);
93
+ }
94
+ if ( rb_respond_to(num, rb_intern("to_f")) ) {
95
+ return rb_num2cc(rb_funcall(num, rb_intern("to_f"), 0));
96
+ }
97
+ rb_raise(rb_eRuntimeError, "can not convert to CComplex");
98
+ }
99
+
100
+ static VALUE
101
+ rb_num_to_cc (VALUE num)
102
+ {
103
+ if ( rb_obj_is_kind_of(num, rb_cCComplex) ) {
104
+ double complex cc = 0.0, *cp;
105
+ cp = &cc;
106
+ Data_Get_Struct(num, double complex, cp);
107
+ return rb_ccomplex_new(cc);
108
+ }
109
+ switch ( TYPE(num) ) {
110
+ case T_FIXNUM:
111
+ return rb_ccomplex_new((double complex) FIX2LONG(num));
112
+ case T_BIGNUM:
113
+ return rb_ccomplex_new((double complex) rb_big2dbl(num));
114
+ case T_FLOAT:
115
+ return rb_ccomplex_new((double complex) NUM2DBL(num));
116
+ }
117
+ if ( rb_obj_is_kind_of(num, rb_cComplex) ) {
118
+ return rb_ccomplex_new(rb_complex_to_cval(num));
119
+ }
120
+ if ( rb_respond_to(num, rb_intern("to_c")) ) {
121
+ return rb_ccomplex_new(rb_complex_to_cval(rb_funcall(num, rb_intern("to_c"), 0)));
122
+ }
123
+ if ( rb_respond_to(num, rb_intern("to_f")) ) {
124
+ return rb_ccomplex_new(NUM2DBL(rb_funcall(num, rb_intern("to_f"), 0)));
125
+ }
126
+ rb_raise(rb_eRuntimeError, "can not convert to CComplex");
127
+ }
128
+
129
+ VALUE
130
+ rb_ccomplex_new (double complex c)
131
+ {
132
+ VALUE obj;
133
+ double complex *cp;
134
+ obj = Data_Make_Struct(rb_cCComplex, double complex, 0, xfree, cp);
135
+ *cp = c;
136
+ return obj;
137
+ }
138
+
139
+ VALUE
140
+ rb_ccomplex_new2 (double re, double im)
141
+ {
142
+ VALUE obj;
143
+ double complex *cp;
144
+ obj = Data_Make_Struct(rb_cCComplex, double complex, 0, xfree, cp);
145
+ *cp = re + I * im;
146
+ return obj;
147
+ }
148
+
149
+ VALUE
150
+ rb_CComplex (int argc, VALUE *argv, VALUE self)
151
+ {
152
+ if ( argc == 1 ) {
153
+ return rb_ccomplex_new(NUM2CC(argv[0]));
154
+ }
155
+ else if ( argc == 2 ) {
156
+ return rb_ccomplex_new2(NUM2DBL(argv[0]), NUM2DBL(argv[1]));
157
+ }
158
+ else {
159
+ rb_raise(rb_eArgError, "invalid # of arguments");
160
+ }
161
+ }
162
+
163
+ static VALUE
164
+ rb_cc_s_allocate (VALUE klass)
165
+ {
166
+ double complex *cp;
167
+ return Data_Make_Struct(klass, double complex, 0, xfree, cp);
168
+ }
169
+
170
+ static VALUE
171
+ rb_cc_initialize (int argc, VALUE *argv, VALUE self)
172
+ {
173
+ volatile VALUE rre, rim;
174
+ double complex *cp;
175
+
176
+ Data_Get_Struct(self, double complex, cp);
177
+
178
+ rb_scan_args(argc, argv, "11", &rre, &rim);
179
+
180
+ if ( NIL_P(rim) ) {
181
+ *cp = NUM2DBL(rre);
182
+ }
183
+ else {
184
+ *cp = NUM2DBL(rre) + I * NUM2DBL(rim);
185
+ }
186
+
187
+ return Qnil;
188
+ }
189
+
190
+ static VALUE
191
+ rb_cc_to_c (VALUE self)
192
+ {
193
+ double complex *cp;
194
+ Data_Get_Struct(self, double complex, cp);
195
+ return rb_Complex(rb_float_new(creal(*cp)), rb_float_new(cimag(*cp)));
196
+ }
197
+
198
+ static VALUE
199
+ rb_complex_to_cc (VALUE self)
200
+ {
201
+ if ( rb_obj_is_kind_of(self, rb_cCComplex) ) {
202
+ return self;
203
+ }
204
+ else {
205
+ return rb_ccomplex_new(rb_complex_to_cval(self));
206
+ }
207
+ }
208
+
209
+
210
+ static VALUE
211
+ rb_cc_real(VALUE self)
212
+ {
213
+ double complex *cp;
214
+
215
+ Data_Get_Struct(self, double complex, cp);
216
+
217
+ return rb_float_new(creal(*cp));
218
+ }
219
+
220
+ static VALUE
221
+ rb_cc_imag(VALUE self)
222
+ {
223
+ double complex *cp;
224
+
225
+ Data_Get_Struct(self, double complex, cp);
226
+
227
+ return rb_float_new(cimag(*cp));
228
+ }
229
+
230
+ static VALUE
231
+ rb_cc_inspect (VALUE self)
232
+ {
233
+ volatile VALUE vary = rb_ary_new(), rim;
234
+ double complex *cp;
235
+ double re, im;
236
+
237
+ Data_Get_Struct(self, double complex, cp);
238
+
239
+ re = creal(*cp);
240
+ im = cimag(*cp);
241
+
242
+ rb_ary_push(vary, rb_inspect(rb_float_new(re)));
243
+
244
+ rim = rb_inspect(rb_float_new(im));
245
+
246
+ if ( StringValuePtr(rim)[0] != '-' ) {
247
+ rb_ary_push(vary, rb_str_new2("+"));
248
+ }
249
+
250
+ rb_ary_push(vary, rim);
251
+ rb_ary_push(vary, rb_str_new2("i"));
252
+
253
+ return rb_ary_join(vary, Qnil);
254
+ }
255
+
256
+ static VALUE
257
+ rb_cc_conj(VALUE self)
258
+ {
259
+ double complex *cp;
260
+
261
+ Data_Get_Struct(self, double complex, cp);
262
+
263
+ return CC2NUM(conj(*cp));
264
+ }
265
+
266
+ static VALUE
267
+ rb_cc_arg(VALUE self)
268
+ {
269
+ double complex *cp;
270
+
271
+ Data_Get_Struct(self, double complex, cp);
272
+
273
+ return rb_float_new(carg(*cp));
274
+ }
275
+
276
+ static VALUE
277
+ rb_cc_abs(VALUE self)
278
+ {
279
+ double complex *cp;
280
+
281
+ Data_Get_Struct(self, double complex, cp);
282
+
283
+ return rb_float_new(cabs(*cp));
284
+ }
285
+
286
+ static VALUE
287
+ rb_cc_coerce(VALUE self, VALUE other)
288
+ {
289
+ VALUE argv[1];
290
+
291
+ if ( rb_obj_is_kind_of(other, rb_cNumeric) ) {
292
+ return rb_assoc_new(CC2NUM(NUM2CC(other)), self);
293
+ }
294
+
295
+ argv[0] = other;
296
+ return rb_call_super(1, argv);
297
+ }
298
+
299
+ static VALUE
300
+ rb_cc_equal(VALUE self, VALUE other)
301
+ {
302
+ double complex a, b;
303
+
304
+ if ( rb_obj_is_kind_of(other, rb_cNumeric) ) {
305
+ a = NUM2CC(self);
306
+ b = NUM2CC(other);
307
+ return ( a == b ) ? Qtrue : Qfalse;
308
+ }
309
+ else {
310
+ return rb_funcall(other, rb_intern("=="), 1, self);
311
+ }
312
+ }
313
+
314
+ static VALUE
315
+ rb_cc_uminus(VALUE self)
316
+ {
317
+ return CC2NUM( - NUM2CC(self) );
318
+ }
319
+
320
+ static VALUE
321
+ rb_cc_plus(VALUE self, VALUE other)
322
+ {
323
+ double complex a, b;
324
+
325
+ if ( rb_obj_is_kind_of(other, rb_cNumeric) ) {
326
+ a = NUM2CC(self);
327
+ b = NUM2CC(other);
328
+ return CC2NUM( a + b );
329
+ }
330
+ else {
331
+ #if RUBY_VERSION_CODE >= 190
332
+ return rb_num_coerce_bin(self, other, '+');
333
+ #else
334
+ return rb_num_coerce_bin(self, other);
335
+ #endif
336
+ }
337
+ }
338
+
339
+ static VALUE
340
+ rb_cc_minus(VALUE self, VALUE other)
341
+ {
342
+ double complex a, b;
343
+
344
+ if ( rb_obj_is_kind_of(other, rb_cNumeric) ) {
345
+ a = NUM2CC(self);
346
+ b = NUM2CC(other);
347
+ return CC2NUM( a - b );
348
+ }
349
+ else {
350
+ #if RUBY_VERSION_CODE >= 190
351
+ return rb_num_coerce_bin(self, other, '-');
352
+ #else
353
+ return rb_num_coerce_bin(self, other);
354
+ #endif
355
+ }
356
+ }
357
+
358
+ static VALUE
359
+ rb_cc_asterisk(VALUE self, VALUE other)
360
+ {
361
+ double complex a, b;
362
+
363
+ if ( rb_obj_is_kind_of(other, rb_cNumeric) ) {
364
+ a = NUM2CC(self);
365
+ b = NUM2CC(other);
366
+ return CC2NUM( a * b );
367
+ }
368
+ else {
369
+ #if RUBY_VERSION_CODE >= 190
370
+ return rb_num_coerce_bin(self, other, '*');
371
+ #else
372
+ return rb_num_coerce_bin(self, other);
373
+ #endif
374
+ }
375
+ }
376
+
377
+ static VALUE
378
+ rb_cc_slash(VALUE self, VALUE other)
379
+ {
380
+ double complex a, b;
381
+
382
+ if ( rb_obj_is_kind_of(other, rb_cNumeric) ) {
383
+ a = NUM2CC(self);
384
+ b = NUM2CC(other);
385
+ return CC2NUM( a / b );
386
+ }
387
+ else {
388
+ #if RUBY_VERSION_CODE >= 190
389
+ return rb_num_coerce_bin(self, other, '/');
390
+ #else
391
+ return rb_num_coerce_bin(self, other);
392
+ #endif
393
+ }
394
+ }
395
+
396
+ static VALUE
397
+ rb_cc_star2(VALUE self, VALUE other)
398
+ {
399
+ double complex a, b;
400
+
401
+ if ( rb_obj_is_kind_of(other, rb_cNumeric) ) {
402
+ a = NUM2CC(self);
403
+ b = NUM2CC(other);
404
+ return CC2NUM( cpow(a, b) );
405
+ }
406
+ else {
407
+ #if RUBY_VERSION_CODE >= 190
408
+ return rb_num_coerce_bin(self, other, rb_intern("**"));
409
+ #else
410
+ return rb_num_coerce_bin(self, other);
411
+ #endif
412
+ }
413
+ }
414
+
415
+ static VALUE rb_cc_cos (VALUE self) { return CC2NUM(ccos(NUM2CC(self))); }
416
+ static VALUE rb_cc_sin (VALUE self) { return CC2NUM(csin(NUM2CC(self))); }
417
+ static VALUE rb_cc_tan (VALUE self) { return CC2NUM(ctan(NUM2CC(self))); }
418
+
419
+ static VALUE rb_cc_acos (VALUE self) { return CC2NUM(cacos(NUM2CC(self))); }
420
+ static VALUE rb_cc_asin (VALUE self) { return CC2NUM(casin(NUM2CC(self))); }
421
+ static VALUE rb_cc_atan (VALUE self) { return CC2NUM(catan(NUM2CC(self))); }
422
+
423
+ static VALUE rb_cc_cosh (VALUE self) { return CC2NUM(ccosh(NUM2CC(self))); }
424
+ static VALUE rb_cc_sinh (VALUE self) { return CC2NUM(csinh(NUM2CC(self))); }
425
+ static VALUE rb_cc_tanh (VALUE self) { return CC2NUM(ctanh(NUM2CC(self))); }
426
+
427
+ static VALUE rb_cc_acosh (VALUE self) { return CC2NUM(cacosh(NUM2CC(self))); }
428
+ static VALUE rb_cc_asinh (VALUE self) { return CC2NUM(casinh(NUM2CC(self))); }
429
+ static VALUE rb_cc_atanh (VALUE self) { return CC2NUM(catanh(NUM2CC(self))); }
430
+
431
+ static VALUE rb_cc_exp (VALUE self) { return CC2NUM(cexp(NUM2CC(self))); }
432
+ static VALUE rb_cc_log (VALUE self) { return CC2NUM(clog(NUM2CC(self))); }
433
+ static VALUE rb_cc_sqrt (VALUE self) { return CC2NUM(csqrt(NUM2CC(self))); }
434
+
435
+ void
436
+ Init_ccomplex ()
437
+ {
438
+ #if RUBY_VERSION_CODE >= 190
439
+ #else
440
+ rb_cComplex = rb_const_get(rb_cObject, rb_intern("Complex"));
441
+ #endif
442
+
443
+ rb_cCComplex = rb_define_class("CComplex", rb_cNumeric);
444
+
445
+ rb_define_method(rb_cComplex, "to_cc", rb_complex_to_cc, 0);
446
+ rb_define_method(rb_cNumeric, "to_cc", rb_num_to_cc, 0);
447
+
448
+ rb_define_global_function("CComplex", rb_CComplex, -1);
449
+
450
+ rb_define_alloc_func(rb_cCComplex, rb_cc_s_allocate);
451
+ rb_define_method(rb_cCComplex, "initialize", rb_cc_initialize, -1);
452
+ rb_define_method(rb_cCComplex, "to_c", rb_cc_to_c, 0);
453
+ rb_define_method(rb_cCComplex, "real", rb_cc_real, 0);
454
+ rb_define_method(rb_cCComplex, "imag", rb_cc_imag, 0);
455
+ rb_define_method(rb_cCComplex, "inspect", rb_cc_inspect, 0);
456
+ rb_define_method(rb_cCComplex, "to_s", rb_cc_inspect, 0);
457
+
458
+ rb_define_method(rb_cCComplex, "conj", rb_cc_conj, 0);
459
+ rb_define_method(rb_cCComplex, "arg", rb_cc_arg, 0);
460
+ rb_define_method(rb_cCComplex, "abs", rb_cc_abs, 0);
461
+
462
+ rb_define_method(rb_cCComplex, "coerce", rb_cc_coerce, 1);
463
+
464
+ rb_define_method(rb_cCComplex, "==", rb_cc_equal, 1);
465
+ rb_define_method(rb_cCComplex, "-@", rb_cc_uminus, 1);
466
+ rb_define_method(rb_cCComplex, "+", rb_cc_plus, 1);
467
+ rb_define_method(rb_cCComplex, "-", rb_cc_minus, 1);
468
+ rb_define_method(rb_cCComplex, "*", rb_cc_asterisk, 1);
469
+ rb_define_method(rb_cCComplex, "/", rb_cc_slash, 1);
470
+ rb_define_method(rb_cCComplex, "**", rb_cc_star2, 1);
471
+
472
+ rb_define_method(rb_cCComplex, "sqrt", rb_cc_sqrt, 0);
473
+ rb_define_method(rb_cCComplex, "exp", rb_cc_exp, 0);
474
+ rb_define_method(rb_cCComplex, "log", rb_cc_log, 0);
475
+ rb_define_method(rb_cCComplex, "cos", rb_cc_cos, 0);
476
+ rb_define_method(rb_cCComplex, "sin", rb_cc_sin, 0);
477
+ rb_define_method(rb_cCComplex, "tan", rb_cc_tan, 0);
478
+ rb_define_method(rb_cCComplex, "cosh", rb_cc_cosh, 0);
479
+ rb_define_method(rb_cCComplex, "sinh", rb_cc_sinh, 0);
480
+ rb_define_method(rb_cCComplex, "tanh", rb_cc_tanh, 0);
481
+ rb_define_method(rb_cCComplex, "acos", rb_cc_acos, 0);
482
+ rb_define_method(rb_cCComplex, "asin", rb_cc_asin, 0);
483
+ rb_define_method(rb_cCComplex, "atan", rb_cc_atan, 0);
484
+ rb_define_method(rb_cCComplex, "acosh", rb_cc_acosh, 0);
485
+ rb_define_method(rb_cCComplex, "asinh", rb_cc_asinh, 0);
486
+ rb_define_method(rb_cCComplex, "atanh", rb_cc_atanh, 0);
487
+
488
+ rb_define_const(rb_cObject, "CI", CC2NUM(I));
489
+
490
+ }
491
+
492
+ #else
493
+
494
+ void
495
+ Init_ccomplex () {}
496
+
497
+ #endif