2008-03-16 03:23:43 +03:00
|
|
|
/*
|
2011-04-24 17:24:02 +04:00
|
|
|
complex.c: Coded by Tadayoshi Funaba 2008-2011
|
2008-03-16 03:23:43 +03:00
|
|
|
|
|
|
|
This implementation is based on Keiju Ishitsuka's Complex library
|
|
|
|
which is written in ruby.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ruby.h"
|
* internal.h: declare internal functions here.
* node.h: declare NODE dependent internal functions here.
* iseq.h: declare rb_iseq_t dependent internal functions here.
* vm_core.h: declare rb_thread_t dependent internal functions here.
* bignum.c, class.c, compile.c, complex.c, cont.c, dir.c, encoding.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c, io.c,
iseq.c, load.c, marshal.c, math.c, numeric.c, object.c, parse.y,
proc.c, process.c, range.c, rational.c, re.c, ruby.c, string.c,
thread.c, time.c, transcode.c, variable.c, vm.c,
tool/compile_prelude.rb: don't declare internal functions declared
in above headers. include above headers if required.
Note that rb_thread_mark() was declared as
void rb_thread_mark(rb_thread_t *th) in cont.c but defined as
void rb_thread_mark(void *ptr) in vm.c. Now it is declared as
the later in internal.h.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32156 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2011-06-18 02:43:38 +04:00
|
|
|
#include "internal.h"
|
2008-03-16 03:23:43 +03:00
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
#define NDEBUG
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#define ZERO INT2FIX(0)
|
|
|
|
#define ONE INT2FIX(1)
|
|
|
|
#define TWO INT2FIX(2)
|
|
|
|
|
|
|
|
VALUE rb_cComplex;
|
|
|
|
|
2008-09-23 14:33:27 +04:00
|
|
|
static ID id_abs, id_abs2, id_arg, id_cmp, id_conj, id_convert,
|
2009-07-03 16:31:26 +04:00
|
|
|
id_denominator, id_divmod, id_eqeq_p, id_expt, id_fdiv, id_floor,
|
|
|
|
id_idiv, id_imag, id_inspect, id_negate, id_numerator, id_quo,
|
|
|
|
id_real, id_real_p, id_to_f, id_to_i, id_to_r, id_to_s;
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-20 15:26:58 +03:00
|
|
|
#define f_boolcast(x) ((x) ? Qtrue : Qfalse)
|
|
|
|
|
|
|
|
#define binop(n,op) \
|
|
|
|
inline static VALUE \
|
|
|
|
f_##n(VALUE x, VALUE y)\
|
|
|
|
{\
|
2010-12-05 04:37:16 +03:00
|
|
|
return rb_funcall(x, (op), 1, y);\
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-20 15:26:58 +03:00
|
|
|
#define fun1(n) \
|
|
|
|
inline static VALUE \
|
|
|
|
f_##n(VALUE x)\
|
|
|
|
{\
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_funcall(x, id_##n, 0);\
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-20 15:26:58 +03:00
|
|
|
#define fun2(n) \
|
|
|
|
inline static VALUE \
|
|
|
|
f_##n(VALUE x, VALUE y)\
|
|
|
|
{\
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_funcall(x, id_##n, 1, y);\
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define math1(n) \
|
|
|
|
inline static VALUE \
|
|
|
|
m_##n(VALUE x)\
|
|
|
|
{\
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_funcall(rb_mMath, id_##n, 1, x);\
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define math2(n) \
|
|
|
|
inline static VALUE \
|
|
|
|
m_##n(VALUE x, VALUE y)\
|
|
|
|
{\
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_funcall(rb_mMath, id_##n, 2, x, y);\
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
2008-09-14 05:16:44 +04:00
|
|
|
#define PRESERVE_SIGNEDZERO
|
|
|
|
|
2008-03-20 15:26:58 +03:00
|
|
|
inline static VALUE
|
|
|
|
f_add(VALUE x, VALUE y)
|
|
|
|
{
|
2008-09-14 05:16:44 +04:00
|
|
|
#ifndef PRESERVE_SIGNEDZERO
|
2008-09-13 05:55:56 +04:00
|
|
|
if (FIXNUM_P(y) && FIX2LONG(y) == 0)
|
|
|
|
return x;
|
|
|
|
else if (FIXNUM_P(x) && FIX2LONG(x) == 0)
|
|
|
|
return y;
|
2008-09-14 05:16:44 +04:00
|
|
|
#endif
|
2008-06-12 16:41:17 +04:00
|
|
|
return rb_funcall(x, '+', 1, y);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
2008-03-30 19:00:12 +04:00
|
|
|
inline static VALUE
|
|
|
|
f_cmp(VALUE x, VALUE y)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y)) {
|
|
|
|
long c = FIX2LONG(x) - FIX2LONG(y);
|
|
|
|
if (c > 0)
|
|
|
|
c = 1;
|
|
|
|
else if (c < 0)
|
|
|
|
c = -1;
|
2008-06-12 16:41:17 +04:00
|
|
|
return INT2FIX(c);
|
2008-04-22 17:17:04 +04:00
|
|
|
}
|
2008-06-12 16:41:17 +04:00
|
|
|
return rb_funcall(x, id_cmp, 1, y);
|
2008-03-30 19:00:12 +04:00
|
|
|
}
|
|
|
|
|
2008-03-20 15:26:58 +03:00
|
|
|
inline static VALUE
|
2008-03-22 20:31:08 +03:00
|
|
|
f_div(VALUE x, VALUE y)
|
2008-03-20 15:26:58 +03:00
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
if (FIXNUM_P(y) && FIX2LONG(y) == 1)
|
2008-06-12 16:41:17 +04:00
|
|
|
return x;
|
|
|
|
return rb_funcall(x, '/', 1, y);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_gt_p(VALUE x, VALUE y)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y))
|
2008-06-12 16:41:17 +04:00
|
|
|
return f_boolcast(FIX2LONG(x) > FIX2LONG(y));
|
|
|
|
return rb_funcall(x, '>', 1, y);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_lt_p(VALUE x, VALUE y)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y))
|
2008-06-12 16:41:17 +04:00
|
|
|
return f_boolcast(FIX2LONG(x) < FIX2LONG(y));
|
|
|
|
return rb_funcall(x, '<', 1, y);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
binop(mod, '%')
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_mul(VALUE x, VALUE y)
|
|
|
|
{
|
2008-09-14 05:16:44 +04:00
|
|
|
#ifndef PRESERVE_SIGNEDZERO
|
2008-03-31 20:42:24 +04:00
|
|
|
if (FIXNUM_P(y)) {
|
2008-09-13 05:55:56 +04:00
|
|
|
long iy = FIX2LONG(y);
|
|
|
|
if (iy == 0) {
|
2011-09-29 15:07:45 +04:00
|
|
|
if (FIXNUM_P(x) || RB_TYPE_P(x, T_BIGNUM))
|
2008-06-12 16:41:17 +04:00
|
|
|
return ZERO;
|
2008-04-22 17:17:04 +04:00
|
|
|
}
|
2008-09-13 05:55:56 +04:00
|
|
|
else if (iy == 1)
|
2008-06-12 16:41:17 +04:00
|
|
|
return x;
|
2008-04-22 17:17:04 +04:00
|
|
|
}
|
|
|
|
else if (FIXNUM_P(x)) {
|
2008-09-13 05:55:56 +04:00
|
|
|
long ix = FIX2LONG(x);
|
|
|
|
if (ix == 0) {
|
2011-09-29 15:07:45 +04:00
|
|
|
if (FIXNUM_P(y) || RB_TYPE_P(y, T_BIGNUM))
|
2008-06-12 16:41:17 +04:00
|
|
|
return ZERO;
|
2008-04-22 17:17:04 +04:00
|
|
|
}
|
2008-09-13 05:55:56 +04:00
|
|
|
else if (ix == 1)
|
2008-06-12 16:41:17 +04:00
|
|
|
return y;
|
2008-04-22 17:17:04 +04:00
|
|
|
}
|
2008-09-14 05:16:44 +04:00
|
|
|
#endif
|
2008-06-12 16:41:17 +04:00
|
|
|
return rb_funcall(x, '*', 1, y);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_sub(VALUE x, VALUE y)
|
|
|
|
{
|
2008-09-14 05:16:44 +04:00
|
|
|
#ifndef PRESERVE_SIGNEDZERO
|
2008-09-13 05:55:56 +04:00
|
|
|
if (FIXNUM_P(y) && FIX2LONG(y) == 0)
|
|
|
|
return x;
|
2008-09-14 05:16:44 +04:00
|
|
|
#endif
|
2008-06-12 16:41:17 +04:00
|
|
|
return rb_funcall(x, '-', 1, y);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fun1(abs)
|
|
|
|
fun1(abs2)
|
|
|
|
fun1(arg)
|
2008-09-17 15:00:09 +04:00
|
|
|
fun1(conj)
|
2008-03-20 15:26:58 +03:00
|
|
|
fun1(denominator)
|
|
|
|
fun1(floor)
|
2009-06-29 16:03:25 +04:00
|
|
|
fun1(imag)
|
2008-03-20 15:26:58 +03:00
|
|
|
fun1(inspect)
|
|
|
|
fun1(negate)
|
|
|
|
fun1(numerator)
|
2009-06-29 16:03:25 +04:00
|
|
|
fun1(real)
|
2008-09-17 02:04:19 +04:00
|
|
|
fun1(real_p)
|
2008-09-06 02:55:35 +04:00
|
|
|
|
2011-04-24 17:24:02 +04:00
|
|
|
inline static VALUE
|
|
|
|
f_to_i(VALUE x)
|
|
|
|
{
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(x, T_STRING))
|
2011-04-24 17:24:02 +04:00
|
|
|
return rb_str_to_inum(x, 10, 0);
|
|
|
|
return rb_funcall(x, id_to_i, 0);
|
|
|
|
}
|
|
|
|
inline static VALUE
|
|
|
|
f_to_f(VALUE x)
|
|
|
|
{
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(x, T_STRING))
|
2011-04-24 17:24:02 +04:00
|
|
|
return DBL2NUM(rb_str_to_dbl(x, 0));
|
|
|
|
return rb_funcall(x, id_to_f, 0);
|
|
|
|
}
|
|
|
|
|
2008-03-20 15:26:58 +03:00
|
|
|
fun1(to_r)
|
|
|
|
fun1(to_s)
|
|
|
|
|
|
|
|
fun2(divmod)
|
|
|
|
|
2009-07-03 16:19:54 +04:00
|
|
|
inline static VALUE
|
|
|
|
f_eqeq_p(VALUE x, VALUE y)
|
|
|
|
{
|
|
|
|
if (FIXNUM_P(x) && FIXNUM_P(y))
|
|
|
|
return f_boolcast(FIX2LONG(x) == FIX2LONG(y));
|
|
|
|
return rb_funcall(x, id_eqeq_p, 1, y);
|
|
|
|
}
|
|
|
|
|
2008-03-20 15:26:58 +03:00
|
|
|
fun2(expt)
|
2009-06-14 02:57:02 +04:00
|
|
|
fun2(fdiv)
|
2008-03-20 15:26:58 +03:00
|
|
|
fun2(idiv)
|
|
|
|
fun2(quo)
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_negative_p(VALUE x)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
if (FIXNUM_P(x))
|
2008-06-12 16:41:17 +04:00
|
|
|
return f_boolcast(FIX2LONG(x) < 0);
|
|
|
|
return rb_funcall(x, '<', 1, ZERO);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
2008-09-21 16:21:32 +04:00
|
|
|
#define f_positive_p(x) (!f_negative_p(x))
|
|
|
|
|
2008-03-20 15:26:58 +03:00
|
|
|
inline static VALUE
|
|
|
|
f_zero_p(VALUE x)
|
|
|
|
{
|
2009-07-12 18:57:42 +04:00
|
|
|
switch (TYPE(x)) {
|
|
|
|
case T_FIXNUM:
|
2008-06-12 16:41:17 +04:00
|
|
|
return f_boolcast(FIX2LONG(x) == 0);
|
2009-07-12 18:57:42 +04:00
|
|
|
case T_BIGNUM:
|
|
|
|
return Qfalse;
|
|
|
|
case T_RATIONAL:
|
|
|
|
{
|
|
|
|
VALUE num = RRATIONAL(x)->num;
|
|
|
|
|
|
|
|
return f_boolcast(FIXNUM_P(num) && FIX2LONG(num) == 0);
|
|
|
|
}
|
|
|
|
}
|
2009-07-03 16:19:54 +04:00
|
|
|
return rb_funcall(x, id_eqeq_p, 1, ZERO);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
2008-09-21 16:21:32 +04:00
|
|
|
#define f_nonzero_p(x) (!f_zero_p(x))
|
|
|
|
|
2008-03-20 15:26:58 +03:00
|
|
|
inline static VALUE
|
|
|
|
f_one_p(VALUE x)
|
|
|
|
{
|
2009-07-12 18:57:42 +04:00
|
|
|
switch (TYPE(x)) {
|
|
|
|
case T_FIXNUM:
|
2008-06-12 16:41:17 +04:00
|
|
|
return f_boolcast(FIX2LONG(x) == 1);
|
2009-07-12 18:57:42 +04:00
|
|
|
case T_BIGNUM:
|
|
|
|
return Qfalse;
|
|
|
|
case T_RATIONAL:
|
|
|
|
{
|
|
|
|
VALUE num = RRATIONAL(x)->num;
|
|
|
|
VALUE den = RRATIONAL(x)->den;
|
|
|
|
|
|
|
|
return f_boolcast(FIXNUM_P(num) && FIX2LONG(num) == 1 &&
|
|
|
|
FIXNUM_P(den) && FIX2LONG(den) == 1);
|
|
|
|
}
|
|
|
|
}
|
2009-07-03 16:19:54 +04:00
|
|
|
return rb_funcall(x, id_eqeq_p, 1, ONE);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_kind_of_p(VALUE x, VALUE c)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_obj_is_kind_of(x, c);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
k_numeric_p(VALUE x)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return f_kind_of_p(x, rb_cNumeric);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
k_integer_p(VALUE x)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return f_kind_of_p(x, rb_cInteger);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
2009-06-28 17:27:48 +04:00
|
|
|
inline static VALUE
|
|
|
|
k_fixnum_p(VALUE x)
|
|
|
|
{
|
|
|
|
return f_kind_of_p(x, rb_cFixnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
k_bignum_p(VALUE x)
|
|
|
|
{
|
|
|
|
return f_kind_of_p(x, rb_cBignum);
|
|
|
|
}
|
|
|
|
|
2008-03-20 15:26:58 +03:00
|
|
|
inline static VALUE
|
|
|
|
k_float_p(VALUE x)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return f_kind_of_p(x, rb_cFloat);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
k_rational_p(VALUE x)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return f_kind_of_p(x, rb_cRational);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
k_complex_p(VALUE x)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return f_kind_of_p(x, rb_cComplex);
|
2008-03-20 15:26:58 +03:00
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-09-19 17:55:52 +04:00
|
|
|
#define k_exact_p(x) (!k_float_p(x))
|
|
|
|
#define k_inexact_p(x) k_float_p(x)
|
|
|
|
|
2009-07-12 16:09:21 +04:00
|
|
|
#define k_exact_zero_p(x) (k_exact_p(x) && f_zero_p(x))
|
|
|
|
#define k_exact_one_p(x) (k_exact_p(x) && f_one_p(x))
|
|
|
|
|
2008-03-16 03:23:43 +03:00
|
|
|
#define get_dat1(x) \
|
2008-03-31 20:42:24 +04:00
|
|
|
struct RComplex *dat;\
|
|
|
|
dat = ((struct RComplex *)(x))
|
2008-03-16 03:23:43 +03:00
|
|
|
|
|
|
|
#define get_dat2(x,y) \
|
2008-03-31 20:42:24 +04:00
|
|
|
struct RComplex *adat, *bdat;\
|
|
|
|
adat = ((struct RComplex *)(x));\
|
|
|
|
bdat = ((struct RComplex *)(y))
|
2008-03-16 03:23:43 +03:00
|
|
|
|
|
|
|
inline static VALUE
|
2008-09-21 02:49:56 +04:00
|
|
|
nucomp_s_new_internal(VALUE klass, VALUE real, VALUE imag)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
NEWOBJ(obj, struct RComplex);
|
|
|
|
OBJSETUP(obj, klass, T_COMPLEX);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
obj->real = real;
|
2008-09-21 02:49:56 +04:00
|
|
|
obj->imag = imag;
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
return (VALUE)obj;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
nucomp_s_alloc(VALUE klass)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return nucomp_s_new_internal(klass, ZERO, ZERO);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-09-23 14:33:27 +04:00
|
|
|
#if 0
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_s_new_bang(int argc, VALUE *argv, VALUE klass)
|
|
|
|
{
|
2008-09-21 02:49:56 +04:00
|
|
|
VALUE real, imag;
|
2008-03-31 20:42:24 +04:00
|
|
|
|
2008-09-21 02:49:56 +04:00
|
|
|
switch (rb_scan_args(argc, argv, "11", &real, &imag)) {
|
2008-03-31 20:42:24 +04:00
|
|
|
case 1:
|
|
|
|
if (!k_numeric_p(real))
|
|
|
|
real = f_to_i(real);
|
2008-09-21 02:49:56 +04:00
|
|
|
imag = ZERO;
|
2008-03-31 20:42:24 +04:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (!k_numeric_p(real))
|
|
|
|
real = f_to_i(real);
|
2008-09-21 02:49:56 +04:00
|
|
|
if (!k_numeric_p(imag))
|
|
|
|
imag = f_to_i(imag);
|
2008-03-31 20:42:24 +04:00
|
|
|
break;
|
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-09-21 02:49:56 +04:00
|
|
|
return nucomp_s_new_internal(klass, real, imag);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
2008-09-23 14:33:27 +04:00
|
|
|
#endif
|
2008-03-16 03:23:43 +03:00
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_complex_new_bang1(VALUE klass, VALUE x)
|
|
|
|
{
|
2008-08-22 16:27:54 +04:00
|
|
|
assert(!k_complex_p(x));
|
2008-03-31 20:42:24 +04:00
|
|
|
return nucomp_s_new_internal(klass, x, ZERO);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_complex_new_bang2(VALUE klass, VALUE x, VALUE y)
|
|
|
|
{
|
2008-08-22 16:27:54 +04:00
|
|
|
assert(!k_complex_p(x));
|
|
|
|
assert(!k_complex_p(y));
|
2008-03-31 20:42:24 +04:00
|
|
|
return nucomp_s_new_internal(klass, x, y);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-12-13 02:40:55 +03:00
|
|
|
#ifdef CANONICALIZATION_FOR_MATHN
|
2008-10-28 17:11:08 +03:00
|
|
|
#define CANON
|
2008-12-13 02:40:55 +03:00
|
|
|
#endif
|
|
|
|
|
2008-10-28 17:11:08 +03:00
|
|
|
#ifdef CANON
|
|
|
|
static int canonicalization = 0;
|
|
|
|
|
2010-08-14 10:33:06 +04:00
|
|
|
RUBY_FUNC_EXPORTED void
|
2008-12-13 02:40:55 +03:00
|
|
|
nucomp_canonicalization(int f)
|
2008-10-28 17:11:08 +03:00
|
|
|
{
|
|
|
|
canonicalization = f;
|
|
|
|
}
|
|
|
|
#endif
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-04-03 16:55:27 +04:00
|
|
|
inline static void
|
|
|
|
nucomp_real_check(VALUE num)
|
|
|
|
{
|
|
|
|
switch (TYPE(num)) {
|
|
|
|
case T_FIXNUM:
|
|
|
|
case T_BIGNUM:
|
|
|
|
case T_FLOAT:
|
|
|
|
case T_RATIONAL:
|
|
|
|
break;
|
|
|
|
default:
|
2008-09-06 02:55:35 +04:00
|
|
|
if (!k_numeric_p(num) || !f_real_p(num))
|
2010-03-03 17:18:26 +03:00
|
|
|
rb_raise(rb_eTypeError, "not a real");
|
2008-04-03 16:55:27 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-03-16 03:23:43 +03:00
|
|
|
inline static VALUE
|
2008-09-21 02:49:56 +04:00
|
|
|
nucomp_s_canonicalize_internal(VALUE klass, VALUE real, VALUE imag)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-09-23 14:33:27 +04:00
|
|
|
#ifdef CANON
|
2008-03-16 03:23:43 +03:00
|
|
|
#define CL_CANON
|
|
|
|
#ifdef CL_CANON
|
2009-07-12 16:09:21 +04:00
|
|
|
if (k_exact_zero_p(imag) && canonicalization)
|
2008-03-31 20:42:24 +04:00
|
|
|
return real;
|
2008-03-16 03:23:43 +03:00
|
|
|
#else
|
2008-10-28 17:11:08 +03:00
|
|
|
if (f_zero_p(imag) && canonicalization)
|
2008-03-31 20:42:24 +04:00
|
|
|
return real;
|
2008-03-16 03:23:43 +03:00
|
|
|
#endif
|
2008-09-23 14:33:27 +04:00
|
|
|
#endif
|
|
|
|
if (f_real_p(real) && f_real_p(imag))
|
2008-09-21 02:49:56 +04:00
|
|
|
return nucomp_s_new_internal(klass, real, imag);
|
2008-09-06 02:55:35 +04:00
|
|
|
else if (f_real_p(real)) {
|
2008-09-21 02:49:56 +04:00
|
|
|
get_dat1(imag);
|
2008-03-31 20:42:24 +04:00
|
|
|
|
|
|
|
return nucomp_s_new_internal(klass,
|
2008-09-21 02:49:56 +04:00
|
|
|
f_sub(real, dat->imag),
|
2008-03-31 20:42:24 +04:00
|
|
|
f_add(ZERO, dat->real));
|
2008-04-22 17:17:04 +04:00
|
|
|
}
|
2008-09-21 02:49:56 +04:00
|
|
|
else if (f_real_p(imag)) {
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(real);
|
|
|
|
|
|
|
|
return nucomp_s_new_internal(klass,
|
|
|
|
dat->real,
|
2008-09-21 02:49:56 +04:00
|
|
|
f_add(dat->imag, imag));
|
2008-04-22 17:17:04 +04:00
|
|
|
}
|
|
|
|
else {
|
2008-09-21 02:49:56 +04:00
|
|
|
get_dat2(real, imag);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
return nucomp_s_new_internal(klass,
|
2008-09-21 02:49:56 +04:00
|
|
|
f_sub(adat->real, bdat->imag),
|
|
|
|
f_add(adat->imag, bdat->real));
|
2008-03-31 20:42:24 +04:00
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-20 15:29:21 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* Complex.rect(real[, imag]) -> complex
|
|
|
|
* Complex.rectangular(real[, imag]) -> complex
|
2009-06-20 15:29:21 +04:00
|
|
|
*
|
|
|
|
* Returns a complex object which denotes the given rectangular form.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_s_new(int argc, VALUE *argv, VALUE klass)
|
|
|
|
{
|
2008-09-21 02:49:56 +04:00
|
|
|
VALUE real, imag;
|
2008-03-31 20:42:24 +04:00
|
|
|
|
2008-09-21 02:49:56 +04:00
|
|
|
switch (rb_scan_args(argc, argv, "11", &real, &imag)) {
|
2008-03-31 20:42:24 +04:00
|
|
|
case 1:
|
2008-09-14 13:35:08 +04:00
|
|
|
nucomp_real_check(real);
|
2008-09-21 02:49:56 +04:00
|
|
|
imag = ZERO;
|
2008-03-31 20:42:24 +04:00
|
|
|
break;
|
2008-09-14 13:35:08 +04:00
|
|
|
default:
|
|
|
|
nucomp_real_check(real);
|
2008-09-21 02:49:56 +04:00
|
|
|
nucomp_real_check(imag);
|
2008-09-14 13:35:08 +04:00
|
|
|
break;
|
2008-03-31 20:42:24 +04:00
|
|
|
}
|
|
|
|
|
2008-09-21 02:49:56 +04:00
|
|
|
return nucomp_s_canonicalize_internal(klass, real, imag);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_complex_new1(VALUE klass, VALUE x)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
assert(!k_complex_p(x));
|
|
|
|
return nucomp_s_canonicalize_internal(klass, x, ZERO);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_complex_new2(VALUE klass, VALUE x, VALUE y)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
assert(!k_complex_p(x));
|
|
|
|
return nucomp_s_canonicalize_internal(klass, x, y);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-27 11:46:57 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Complex(x[, y]) -> numeric
|
|
|
|
*
|
|
|
|
* Returns x+i*y;
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_f_complex(int argc, VALUE *argv, VALUE klass)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_funcall2(rb_cComplex, id_convert, argc, argv);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-10-28 18:45:29 +03:00
|
|
|
#define imp1(n) \
|
|
|
|
inline static VALUE \
|
2008-10-29 09:45:26 +03:00
|
|
|
m_##n##_bang(VALUE x)\
|
2008-10-28 18:45:29 +03:00
|
|
|
{\
|
|
|
|
return rb_math_##n(x);\
|
|
|
|
}
|
2008-10-28 18:10:40 +03:00
|
|
|
|
2008-10-28 18:45:29 +03:00
|
|
|
#define imp2(n) \
|
|
|
|
inline static VALUE \
|
2008-10-29 09:45:26 +03:00
|
|
|
m_##n##_bang(VALUE x, VALUE y)\
|
2008-10-28 18:45:29 +03:00
|
|
|
{\
|
|
|
|
return rb_math_##n(x, y);\
|
|
|
|
}
|
|
|
|
|
|
|
|
imp2(atan2)
|
|
|
|
imp1(cos)
|
|
|
|
imp1(cosh)
|
|
|
|
imp1(exp)
|
|
|
|
imp2(hypot)
|
|
|
|
|
2010-12-05 04:37:16 +03:00
|
|
|
#define m_hypot(x,y) m_hypot_bang((x),(y))
|
2008-10-28 18:45:29 +03:00
|
|
|
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
2008-04-05 18:25:40 +04:00
|
|
|
m_log_bang(VALUE x)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-10-28 18:10:40 +03:00
|
|
|
return rb_math_log(1, &x);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-10-28 18:45:29 +03:00
|
|
|
imp1(sin)
|
|
|
|
imp1(sinh)
|
|
|
|
imp1(sqrt)
|
2008-03-16 03:23:43 +03:00
|
|
|
|
|
|
|
static VALUE
|
|
|
|
m_cos(VALUE x)
|
|
|
|
{
|
2008-09-06 02:55:35 +04:00
|
|
|
if (f_real_p(x))
|
2008-03-31 20:42:24 +04:00
|
|
|
return m_cos_bang(x);
|
2008-09-21 08:59:53 +04:00
|
|
|
{
|
|
|
|
get_dat1(x);
|
|
|
|
return f_complex_new2(rb_cComplex,
|
|
|
|
f_mul(m_cos_bang(dat->real),
|
|
|
|
m_cosh_bang(dat->imag)),
|
|
|
|
f_mul(f_negate(m_sin_bang(dat->real)),
|
|
|
|
m_sinh_bang(dat->imag)));
|
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
m_sin(VALUE x)
|
|
|
|
{
|
2008-09-06 02:55:35 +04:00
|
|
|
if (f_real_p(x))
|
2008-03-31 20:42:24 +04:00
|
|
|
return m_sin_bang(x);
|
2008-09-21 08:59:53 +04:00
|
|
|
{
|
|
|
|
get_dat1(x);
|
|
|
|
return f_complex_new2(rb_cComplex,
|
|
|
|
f_mul(m_sin_bang(dat->real),
|
|
|
|
m_cosh_bang(dat->imag)),
|
|
|
|
f_mul(m_cos_bang(dat->real),
|
|
|
|
m_sinh_bang(dat->imag)));
|
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-10-13 04:55:08 +04:00
|
|
|
#if 0
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
m_sqrt(VALUE x)
|
|
|
|
{
|
2008-09-06 02:55:35 +04:00
|
|
|
if (f_real_p(x)) {
|
2008-09-21 16:21:32 +04:00
|
|
|
if (f_positive_p(x))
|
2008-03-31 20:42:24 +04:00
|
|
|
return m_sqrt_bang(x);
|
2008-06-12 16:41:17 +04:00
|
|
|
return f_complex_new2(rb_cComplex, ZERO, m_sqrt_bang(f_negate(x)));
|
2008-04-22 17:17:04 +04:00
|
|
|
}
|
|
|
|
else {
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(x);
|
|
|
|
|
2008-09-21 02:49:56 +04:00
|
|
|
if (f_negative_p(dat->imag))
|
2008-09-17 15:00:09 +04:00
|
|
|
return f_conj(m_sqrt(f_conj(x)));
|
2008-03-31 20:42:24 +04:00
|
|
|
else {
|
|
|
|
VALUE a = f_abs(x);
|
|
|
|
return f_complex_new2(rb_cComplex,
|
|
|
|
m_sqrt_bang(f_div(f_add(a, dat->real), TWO)),
|
|
|
|
m_sqrt_bang(f_div(f_sub(a, dat->real), TWO)));
|
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
}
|
2008-10-13 04:55:08 +04:00
|
|
|
#endif
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
inline static VALUE
|
|
|
|
f_complex_polar(VALUE klass, VALUE x, VALUE y)
|
|
|
|
{
|
|
|
|
assert(!k_complex_p(x));
|
|
|
|
assert(!k_complex_p(y));
|
|
|
|
return nucomp_s_canonicalize_internal(klass,
|
|
|
|
f_mul(x, m_cos(y)),
|
|
|
|
f_mul(x, m_sin(y)));
|
|
|
|
}
|
|
|
|
|
2009-06-20 15:29:21 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-07-05 17:46:10 +04:00
|
|
|
* Complex.polar(abs[, arg]) -> complex
|
2009-06-20 15:29:21 +04:00
|
|
|
*
|
|
|
|
* Returns a complex object which denotes the given polar form.
|
2011-01-08 13:51:14 +03:00
|
|
|
*
|
|
|
|
* Complex.polar(3, 0) #=> (3.0+0.0i)
|
|
|
|
* Complex.polar(3, Math::PI/2) #=> (1.836909530733566e-16+3.0i)
|
|
|
|
* Complex.polar(3, Math::PI) #=> (-3.0+3.673819061467132e-16i)
|
|
|
|
* Complex.polar(3, -Math::PI/2) #=> (1.836909530733566e-16-3.0i)
|
2009-06-20 15:29:21 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
2009-07-05 17:46:10 +04:00
|
|
|
nucomp_s_polar(int argc, VALUE *argv, VALUE klass)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2009-07-05 17:46:10 +04:00
|
|
|
VALUE abs, arg;
|
|
|
|
|
|
|
|
switch (rb_scan_args(argc, argv, "11", &abs, &arg)) {
|
|
|
|
case 1:
|
|
|
|
nucomp_real_check(abs);
|
|
|
|
arg = ZERO;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
nucomp_real_check(abs);
|
|
|
|
nucomp_real_check(arg);
|
|
|
|
break;
|
|
|
|
}
|
2008-08-22 16:27:54 +04:00
|
|
|
return f_complex_polar(klass, abs, arg);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.real -> real
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns the real part.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_real(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
|
|
|
return dat->real;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.imag -> real
|
|
|
|
* cmp.imaginary -> real
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns the imaginary part.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
2008-09-21 02:49:56 +04:00
|
|
|
nucomp_imag(VALUE self)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2008-09-21 02:49:56 +04:00
|
|
|
return dat->imag;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
2009-06-27 11:46:57 +04:00
|
|
|
* call-seq:
|
|
|
|
* -cmp -> complex
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Returns negation of the value.
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-09-14 05:16:44 +04:00
|
|
|
static VALUE
|
|
|
|
nucomp_negate(VALUE self)
|
|
|
|
{
|
|
|
|
get_dat1(self);
|
|
|
|
return f_complex_new2(CLASS_OF(self),
|
2008-09-21 02:49:56 +04:00
|
|
|
f_negate(dat->real), f_negate(dat->imag));
|
2008-09-14 05:16:44 +04:00
|
|
|
}
|
|
|
|
|
2009-06-28 04:22:07 +04:00
|
|
|
inline static VALUE
|
|
|
|
f_addsub(VALUE self, VALUE other,
|
|
|
|
VALUE (*func)(VALUE, VALUE), ID id)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-08-22 16:27:54 +04:00
|
|
|
if (k_complex_p(other)) {
|
2008-09-21 02:49:56 +04:00
|
|
|
VALUE real, imag;
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
get_dat2(self, other);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2009-06-27 14:12:04 +04:00
|
|
|
real = (*func)(adat->real, bdat->real);
|
|
|
|
imag = (*func)(adat->imag, bdat->imag);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-09-21 02:49:56 +04:00
|
|
|
return f_complex_new2(CLASS_OF(self), real, imag);
|
2008-08-22 16:27:54 +04:00
|
|
|
}
|
2008-09-06 02:55:35 +04:00
|
|
|
if (k_numeric_p(other) && f_real_p(other)) {
|
2008-08-22 16:27:54 +04:00
|
|
|
get_dat1(self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
return f_complex_new2(CLASS_OF(self),
|
2009-06-27 14:12:04 +04:00
|
|
|
(*func)(dat->real, other), dat->imag);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
2009-06-27 14:12:04 +04:00
|
|
|
return rb_num_coerce_bin(self, other, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* cmp + numeric -> complex
|
|
|
|
*
|
|
|
|
* Performs addition.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
nucomp_add(VALUE self, VALUE other)
|
|
|
|
{
|
2009-06-28 04:22:07 +04:00
|
|
|
return f_addsub(self, other, f_add, '+');
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp - numeric -> complex
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Performs subtraction.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_sub(VALUE self, VALUE other)
|
|
|
|
{
|
2009-06-28 04:22:07 +04:00
|
|
|
return f_addsub(self, other, f_sub, '-');
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp * numeric -> complex
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Performs multiplication.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_mul(VALUE self, VALUE other)
|
|
|
|
{
|
2008-08-22 16:27:54 +04:00
|
|
|
if (k_complex_p(other)) {
|
2008-09-21 02:49:56 +04:00
|
|
|
VALUE real, imag;
|
2008-03-31 20:42:24 +04:00
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
get_dat2(self, other);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
real = f_sub(f_mul(adat->real, bdat->real),
|
2008-09-21 02:49:56 +04:00
|
|
|
f_mul(adat->imag, bdat->imag));
|
|
|
|
imag = f_add(f_mul(adat->real, bdat->imag),
|
2009-06-27 14:12:04 +04:00
|
|
|
f_mul(adat->imag, bdat->real));
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-09-21 02:49:56 +04:00
|
|
|
return f_complex_new2(CLASS_OF(self), real, imag);
|
2008-08-22 16:27:54 +04:00
|
|
|
}
|
2008-09-06 02:55:35 +04:00
|
|
|
if (k_numeric_p(other) && f_real_p(other)) {
|
2008-08-22 16:27:54 +04:00
|
|
|
get_dat1(self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
return f_complex_new2(CLASS_OF(self),
|
|
|
|
f_mul(dat->real, other),
|
2008-09-21 02:49:56 +04:00
|
|
|
f_mul(dat->imag, other));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
2008-08-22 16:27:54 +04:00
|
|
|
return rb_num_coerce_bin(self, other, '*');
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-28 04:22:07 +04:00
|
|
|
inline static VALUE
|
|
|
|
f_divide(VALUE self, VALUE other,
|
|
|
|
VALUE (*func)(VALUE, VALUE), ID id)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-08-22 16:27:54 +04:00
|
|
|
if (k_complex_p(other)) {
|
2009-06-27 14:12:04 +04:00
|
|
|
int flo;
|
2008-08-22 16:27:54 +04:00
|
|
|
get_dat2(self, other);
|
|
|
|
|
2009-06-27 14:12:04 +04:00
|
|
|
flo = (k_float_p(adat->real) || k_float_p(adat->imag) ||
|
|
|
|
k_float_p(bdat->real) || k_float_p(bdat->imag));
|
|
|
|
|
|
|
|
if (f_gt_p(f_abs(bdat->real), f_abs(bdat->imag))) {
|
|
|
|
VALUE r, n;
|
|
|
|
|
|
|
|
r = (*func)(bdat->imag, bdat->real);
|
|
|
|
n = f_mul(bdat->real, f_add(ONE, f_mul(r, r)));
|
|
|
|
if (flo)
|
|
|
|
return f_complex_new2(CLASS_OF(self),
|
|
|
|
(*func)(self, n),
|
|
|
|
(*func)(f_negate(f_mul(self, r)), n));
|
|
|
|
return f_complex_new2(CLASS_OF(self),
|
|
|
|
(*func)(f_add(adat->real,
|
|
|
|
f_mul(adat->imag, r)), n),
|
|
|
|
(*func)(f_sub(adat->imag,
|
|
|
|
f_mul(adat->real, r)), n));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
VALUE r, n;
|
|
|
|
|
|
|
|
r = (*func)(bdat->real, bdat->imag);
|
|
|
|
n = f_mul(bdat->imag, f_add(ONE, f_mul(r, r)));
|
|
|
|
if (flo)
|
|
|
|
return f_complex_new2(CLASS_OF(self),
|
|
|
|
(*func)(f_mul(self, r), n),
|
|
|
|
(*func)(f_negate(self), n));
|
|
|
|
return f_complex_new2(CLASS_OF(self),
|
|
|
|
(*func)(f_add(f_mul(adat->real, r),
|
|
|
|
adat->imag), n),
|
|
|
|
(*func)(f_sub(f_mul(adat->imag, r),
|
|
|
|
adat->real), n));
|
2008-04-22 17:17:04 +04:00
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
2008-09-06 02:55:35 +04:00
|
|
|
if (k_numeric_p(other) && f_real_p(other)) {
|
2008-08-22 16:27:54 +04:00
|
|
|
get_dat1(self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
return f_complex_new2(CLASS_OF(self),
|
2009-06-14 02:57:02 +04:00
|
|
|
(*func)(dat->real, other),
|
|
|
|
(*func)(dat->imag, other));
|
2008-08-22 16:27:54 +04:00
|
|
|
}
|
2009-06-14 02:57:02 +04:00
|
|
|
return rb_num_coerce_bin(self, other, id);
|
|
|
|
}
|
|
|
|
|
2009-06-28 18:39:31 +04:00
|
|
|
#define rb_raise_zerodiv() rb_raise(rb_eZeroDivError, "divided by 0")
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp / numeric -> complex
|
|
|
|
* cmp.quo(numeric) -> complex
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Performs division.
|
|
|
|
*
|
|
|
|
* For example:
|
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Complex(10.0) / 3 #=> (3.3333333333333335+(0/1)*i)
|
|
|
|
* Complex(10) / 3 #=> ((10/3)+(0/1)*i) # not (3+0i)
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2009-06-14 02:57:02 +04:00
|
|
|
static VALUE
|
|
|
|
nucomp_div(VALUE self, VALUE other)
|
|
|
|
{
|
2009-06-28 04:22:07 +04:00
|
|
|
return f_divide(self, other, f_quo, id_quo);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
#define nucomp_quo nucomp_div
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.fdiv(numeric) -> complex
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Performs division as each part is a float, never returns a float.
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* For example:
|
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Complex(11,22).fdiv(3) #=> (3.6666666666666665+7.333333333333333i)
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_fdiv(VALUE self, VALUE other)
|
|
|
|
{
|
2009-06-28 04:22:07 +04:00
|
|
|
return f_divide(self, other, f_fdiv, id_fdiv);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-07-12 15:46:40 +04:00
|
|
|
inline static VALUE
|
|
|
|
f_reciprocal(VALUE x)
|
|
|
|
{
|
|
|
|
return f_quo(ONE, x);
|
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp ** numeric -> complex
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Performs exponentiation.
|
|
|
|
*
|
|
|
|
* For example:
|
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Complex('i') ** 2 #=> (-1+0i)
|
|
|
|
* Complex(-8) ** Rational(1,3) #=> (1.0000000000000002+1.7320508075688772i)
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_expt(VALUE self, VALUE other)
|
|
|
|
{
|
2010-11-23 01:31:55 +03:00
|
|
|
if (k_numeric_p(other) && k_exact_zero_p(other))
|
2008-03-31 20:42:24 +04:00
|
|
|
return f_complex_new_bang1(CLASS_OF(self), ONE);
|
|
|
|
|
|
|
|
if (k_rational_p(other) && f_one_p(f_denominator(other)))
|
2009-06-28 14:50:39 +04:00
|
|
|
other = f_numerator(other); /* c14n */
|
|
|
|
|
|
|
|
if (k_complex_p(other)) {
|
|
|
|
get_dat1(other);
|
|
|
|
|
2009-07-12 16:09:21 +04:00
|
|
|
if (k_exact_zero_p(dat->imag))
|
2009-06-28 14:50:39 +04:00
|
|
|
other = dat->real; /* c14n */
|
|
|
|
}
|
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
if (k_complex_p(other)) {
|
2009-06-14 02:57:02 +04:00
|
|
|
VALUE r, theta, nr, ntheta;
|
2008-08-22 16:27:54 +04:00
|
|
|
|
|
|
|
get_dat1(other);
|
|
|
|
|
2009-06-14 02:57:02 +04:00
|
|
|
r = f_abs(self);
|
|
|
|
theta = f_arg(self);
|
2008-08-22 16:27:54 +04:00
|
|
|
|
2009-06-14 02:57:02 +04:00
|
|
|
nr = m_exp_bang(f_sub(f_mul(dat->real, m_log_bang(r)),
|
|
|
|
f_mul(dat->imag, theta)));
|
|
|
|
ntheta = f_add(f_mul(theta, dat->real),
|
|
|
|
f_mul(dat->imag, m_log_bang(r)));
|
2008-08-22 16:27:54 +04:00
|
|
|
return f_complex_polar(CLASS_OF(self), nr, ntheta);
|
|
|
|
}
|
2009-06-28 17:27:48 +04:00
|
|
|
if (k_fixnum_p(other)) {
|
2008-03-31 20:42:24 +04:00
|
|
|
if (f_gt_p(other, ZERO)) {
|
2009-07-12 18:57:42 +04:00
|
|
|
VALUE x, z;
|
|
|
|
long n;
|
2008-03-31 20:42:24 +04:00
|
|
|
|
|
|
|
x = self;
|
|
|
|
z = x;
|
2009-07-12 18:57:42 +04:00
|
|
|
n = FIX2LONG(other) - 1;
|
2008-03-31 20:42:24 +04:00
|
|
|
|
2009-07-12 18:57:42 +04:00
|
|
|
while (n) {
|
|
|
|
long q, r;
|
2008-03-31 20:42:24 +04:00
|
|
|
|
2009-07-12 18:57:42 +04:00
|
|
|
while (1) {
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(x);
|
|
|
|
|
2009-07-12 18:57:42 +04:00
|
|
|
q = n / 2;
|
|
|
|
r = n % 2;
|
|
|
|
|
|
|
|
if (r)
|
|
|
|
break;
|
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
x = f_complex_new2(CLASS_OF(self),
|
|
|
|
f_sub(f_mul(dat->real, dat->real),
|
2008-09-21 02:49:56 +04:00
|
|
|
f_mul(dat->imag, dat->imag)),
|
|
|
|
f_mul(f_mul(TWO, dat->real), dat->imag));
|
2009-07-12 18:57:42 +04:00
|
|
|
n = q;
|
2008-03-31 20:42:24 +04:00
|
|
|
}
|
|
|
|
z = f_mul(z, x);
|
2009-07-12 18:57:42 +04:00
|
|
|
n--;
|
2008-03-31 20:42:24 +04:00
|
|
|
}
|
|
|
|
return z;
|
2008-04-22 17:17:04 +04:00
|
|
|
}
|
2009-07-12 15:46:40 +04:00
|
|
|
return f_expt(f_reciprocal(self), f_negate(other));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
2008-09-06 02:55:35 +04:00
|
|
|
if (k_numeric_p(other) && f_real_p(other)) {
|
2009-06-14 02:57:02 +04:00
|
|
|
VALUE r, theta;
|
2008-08-22 16:27:54 +04:00
|
|
|
|
2009-06-28 17:27:48 +04:00
|
|
|
if (k_bignum_p(other))
|
|
|
|
rb_warn("in a**b, b may be too big");
|
|
|
|
|
2009-06-14 02:57:02 +04:00
|
|
|
r = f_abs(self);
|
|
|
|
theta = f_arg(self);
|
2009-06-29 20:20:32 +04:00
|
|
|
|
|
|
|
return f_complex_polar(CLASS_OF(self), f_expt(r, other),
|
2009-06-14 02:57:02 +04:00
|
|
|
f_mul(theta, other));
|
2008-08-22 16:27:54 +04:00
|
|
|
}
|
|
|
|
return rb_num_coerce_bin(self, other, id_expt);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-07-03 16:19:54 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* cmp == object -> true or false
|
|
|
|
*
|
|
|
|
* Returns true if cmp equals object numerically.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
nucomp_eqeq_p(VALUE self, VALUE other)
|
|
|
|
{
|
|
|
|
if (k_complex_p(other)) {
|
|
|
|
get_dat2(self, other);
|
|
|
|
|
|
|
|
return f_boolcast(f_eqeq_p(adat->real, bdat->real) &&
|
|
|
|
f_eqeq_p(adat->imag, bdat->imag));
|
|
|
|
}
|
2008-09-06 02:55:35 +04:00
|
|
|
if (k_numeric_p(other) && f_real_p(other)) {
|
2008-08-22 16:27:54 +04:00
|
|
|
get_dat1(self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2009-07-03 16:19:54 +04:00
|
|
|
return f_boolcast(f_eqeq_p(dat->real, other) && f_zero_p(dat->imag));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
2009-07-03 16:19:54 +04:00
|
|
|
return f_eqeq_p(other, self);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-27 11:46:57 +04:00
|
|
|
/* :nodoc: */
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_coerce(VALUE self, VALUE other)
|
|
|
|
{
|
2008-09-06 02:55:35 +04:00
|
|
|
if (k_numeric_p(other) && f_real_p(other))
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_assoc_new(f_complex_new_bang1(CLASS_OF(self), other), self);
|
2011-09-29 15:07:45 +04:00
|
|
|
if (RB_TYPE_P(other, T_COMPLEX))
|
2009-06-17 03:17:17 +04:00
|
|
|
return rb_assoc_new(other, self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_raise(rb_eTypeError, "%s can't be coerced into %s",
|
|
|
|
rb_obj_classname(other), rb_obj_classname(self));
|
|
|
|
return Qnil;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.abs -> real
|
|
|
|
* cmp.magnitude -> real
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns the absolute part of its polar form.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_abs(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2009-06-27 14:12:04 +04:00
|
|
|
|
|
|
|
if (f_zero_p(dat->real)) {
|
|
|
|
VALUE a = f_abs(dat->imag);
|
|
|
|
if (k_float_p(dat->real) && !k_float_p(dat->imag))
|
|
|
|
a = f_to_f(a);
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
if (f_zero_p(dat->imag)) {
|
|
|
|
VALUE a = f_abs(dat->real);
|
|
|
|
if (!k_float_p(dat->real) && k_float_p(dat->imag))
|
|
|
|
a = f_to_f(a);
|
|
|
|
return a;
|
|
|
|
}
|
2008-09-21 02:49:56 +04:00
|
|
|
return m_hypot(dat->real, dat->imag);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.abs2 -> real
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns square of the absolute value.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_abs2(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
|
|
|
return f_add(f_mul(dat->real, dat->real),
|
2008-09-21 02:49:56 +04:00
|
|
|
f_mul(dat->imag, dat->imag));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.arg -> float
|
|
|
|
* cmp.angle -> float
|
|
|
|
* cmp.phase -> float
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns the angle part of its polar form.
|
2011-01-08 13:51:14 +03:00
|
|
|
*
|
|
|
|
* Complex.polar(3, Math::PI/2).arg #=> 1.5707963267948966
|
|
|
|
*
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_arg(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2008-09-21 02:49:56 +04:00
|
|
|
return m_atan2_bang(dat->imag, dat->real);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.rect -> array
|
|
|
|
* cmp.rectangular -> array
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Returns an array; [cmp.real, cmp.imag].
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-08-29 17:41:41 +04:00
|
|
|
static VALUE
|
|
|
|
nucomp_rect(VALUE self)
|
|
|
|
{
|
|
|
|
get_dat1(self);
|
2008-09-21 02:49:56 +04:00
|
|
|
return rb_assoc_new(dat->real, dat->imag);
|
2008-08-29 17:41:41 +04:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.polar -> array
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Returns an array; [cmp.abs, cmp.arg].
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_polar(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_assoc_new(f_abs(self), f_arg(self));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.conj -> complex
|
2009-11-03 20:46:28 +03:00
|
|
|
* cmp.conjugate -> complex
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-11-03 20:46:28 +03:00
|
|
|
* Returns the complex conjugate.
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
2008-09-17 15:00:09 +04:00
|
|
|
nucomp_conj(VALUE self)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2008-09-21 02:49:56 +04:00
|
|
|
return f_complex_new2(CLASS_OF(self), dat->real, f_negate(dat->imag));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-09-13 05:55:56 +04:00
|
|
|
#if 0
|
2009-06-27 11:46:57 +04:00
|
|
|
/* :nodoc: */
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
2008-09-13 05:55:56 +04:00
|
|
|
nucomp_true(VALUE self)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-09-13 05:55:56 +04:00
|
|
|
return Qtrue;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
2008-09-13 05:55:56 +04:00
|
|
|
#endif
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.real? -> false
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns false.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
2008-09-13 05:55:56 +04:00
|
|
|
nucomp_false(VALUE self)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-09-13 05:55:56 +04:00
|
|
|
return Qfalse;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-09-13 05:55:56 +04:00
|
|
|
#if 0
|
2009-06-27 11:46:57 +04:00
|
|
|
/* :nodoc: */
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_exact_p(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2009-07-12 16:09:21 +04:00
|
|
|
return f_boolcast(k_exact_p(dat->real) && k_exact_p(dat->imag));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-27 11:46:57 +04:00
|
|
|
/* :nodoc: */
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_inexact_p(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return f_boolcast(!nucomp_exact_p(self));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
2008-03-31 20:42:24 +04:00
|
|
|
#endif
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.denominator -> integer
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2010-11-23 17:28:55 +03:00
|
|
|
* Returns the denominator (lcm of both denominator - real and imag).
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* See numerator.
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_denominator(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2008-09-21 02:49:56 +04:00
|
|
|
return rb_lcm(f_denominator(dat->real), f_denominator(dat->imag));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.numerator -> numeric
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns the numerator.
|
|
|
|
*
|
|
|
|
* For example:
|
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* 1 2 3+4i <- numerator
|
|
|
|
* - + -i -> ----
|
|
|
|
* 2 3 6 <- denominator
|
|
|
|
*
|
|
|
|
* c = Complex('1/2+2/3i') #=> ((1/2)+(2/3)*i)
|
|
|
|
* n = c.numerator #=> (3+4i)
|
|
|
|
* d = c.denominator #=> 6
|
|
|
|
* n / d #=> ((1/2)+(2/3)*i)
|
|
|
|
* Complex(Rational(n.real, d), Rational(n.imag, d))
|
2009-06-19 22:35:39 +04:00
|
|
|
* #=> ((1/2)+(2/3)*i)
|
2009-06-27 11:46:57 +04:00
|
|
|
* See denominator.
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_numerator(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
VALUE cd;
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
cd = f_denominator(self);
|
|
|
|
return f_complex_new2(CLASS_OF(self),
|
|
|
|
f_mul(f_numerator(dat->real),
|
|
|
|
f_div(cd, f_denominator(dat->real))),
|
2008-09-21 02:49:56 +04:00
|
|
|
f_mul(f_numerator(dat->imag),
|
|
|
|
f_div(cd, f_denominator(dat->imag))));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-27 11:46:57 +04:00
|
|
|
/* :nodoc: */
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_hash(VALUE self)
|
|
|
|
{
|
2009-09-08 17:10:04 +04:00
|
|
|
st_index_t v, h[2];
|
* string.c (rb_hash_uint32, rb_hash_uint, rb_hash_start, rb_hash_end),
include/ruby/intern.h: add Murmurhash API. [ruby-dev:37784]
* complex.c (nucomp_hash), array.c (rb_ary_hash), time.c (time_hash),
string.c (rb_str_hsah), object.c (rb_obj_hash), range.c
(range_hash), struct.c (rb_struct_hash), hash.c (rb_any_hash),
rational.c (nurat_hash): use Murmurhash. [ruby-dev:37784]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22317 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-02-14 22:55:34 +03:00
|
|
|
VALUE n;
|
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
* string.c (rb_hash_uint32, rb_hash_uint, rb_hash_start, rb_hash_end),
include/ruby/intern.h: add Murmurhash API. [ruby-dev:37784]
* complex.c (nucomp_hash), array.c (rb_ary_hash), time.c (time_hash),
string.c (rb_str_hsah), object.c (rb_obj_hash), range.c
(range_hash), struct.c (rb_struct_hash), hash.c (rb_any_hash),
rational.c (nurat_hash): use Murmurhash. [ruby-dev:37784]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22317 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-02-14 22:55:34 +03:00
|
|
|
n = rb_hash(dat->real);
|
2009-07-25 08:44:36 +04:00
|
|
|
h[0] = NUM2LONG(n);
|
* string.c (rb_hash_uint32, rb_hash_uint, rb_hash_start, rb_hash_end),
include/ruby/intern.h: add Murmurhash API. [ruby-dev:37784]
* complex.c (nucomp_hash), array.c (rb_ary_hash), time.c (time_hash),
string.c (rb_str_hsah), object.c (rb_obj_hash), range.c
(range_hash), struct.c (rb_struct_hash), hash.c (rb_any_hash),
rational.c (nurat_hash): use Murmurhash. [ruby-dev:37784]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22317 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-02-14 22:55:34 +03:00
|
|
|
n = rb_hash(dat->imag);
|
2009-07-25 08:44:36 +04:00
|
|
|
h[1] = NUM2LONG(n);
|
* string.c (rb_hash_uint32, rb_hash_uint, rb_hash_start, rb_hash_end),
include/ruby/intern.h: add Murmurhash API. [ruby-dev:37784]
* complex.c (nucomp_hash), array.c (rb_ary_hash), time.c (time_hash),
string.c (rb_str_hsah), object.c (rb_obj_hash), range.c
(range_hash), struct.c (rb_struct_hash), hash.c (rb_any_hash),
rational.c (nurat_hash): use Murmurhash. [ruby-dev:37784]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22317 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-02-14 22:55:34 +03:00
|
|
|
v = rb_memhash(h, sizeof(h));
|
|
|
|
return LONG2FIX(v);
|
2008-09-15 08:20:46 +04:00
|
|
|
}
|
|
|
|
|
2009-06-27 11:46:57 +04:00
|
|
|
/* :nodoc: */
|
2008-09-15 08:20:46 +04:00
|
|
|
static VALUE
|
|
|
|
nucomp_eql_p(VALUE self, VALUE other)
|
|
|
|
{
|
|
|
|
if (k_complex_p(other)) {
|
|
|
|
get_dat2(self, other);
|
|
|
|
|
|
|
|
return f_boolcast((CLASS_OF(adat->real) == CLASS_OF(bdat->real)) &&
|
2008-09-21 02:49:56 +04:00
|
|
|
(CLASS_OF(adat->imag) == CLASS_OF(bdat->imag)) &&
|
2009-07-03 16:19:54 +04:00
|
|
|
f_eqeq_p(self, other));
|
2008-09-15 08:20:46 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
return Qfalse;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_signbit(VALUE x)
|
|
|
|
{
|
2011-10-24 18:57:08 +04:00
|
|
|
#if defined(HAVE_SIGNBIT) && defined(__GNUC__) && defined(__sun) && \
|
2011-08-05 11:03:21 +04:00
|
|
|
!defined(signbit)
|
|
|
|
extern int signbit(double);
|
2011-07-31 18:17:40 +04:00
|
|
|
#endif
|
2008-03-31 20:42:24 +04:00
|
|
|
switch (TYPE(x)) {
|
2009-02-15 20:39:38 +03:00
|
|
|
case T_FLOAT: {
|
|
|
|
double f = RFLOAT_VALUE(x);
|
|
|
|
return f_boolcast(!isnan(f) && signbit(f));
|
|
|
|
}
|
2008-03-31 20:42:24 +04:00
|
|
|
}
|
|
|
|
return f_negative_p(x);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
inline static VALUE
|
|
|
|
f_tpositive_p(VALUE x)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return f_boolcast(!f_signbit(x));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
2009-06-28 04:22:07 +04:00
|
|
|
f_format(VALUE self, VALUE (*func)(VALUE))
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-08-22 16:27:54 +04:00
|
|
|
VALUE s, impos;
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-09-21 02:49:56 +04:00
|
|
|
impos = f_tpositive_p(dat->imag);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-12-05 15:44:06 +03:00
|
|
|
s = (*func)(dat->real);
|
2008-08-22 16:27:54 +04:00
|
|
|
rb_str_cat2(s, !impos ? "-" : "+");
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-12-05 15:44:06 +03:00
|
|
|
rb_str_concat(s, (*func)(f_abs(dat->imag)));
|
2008-12-03 19:43:01 +03:00
|
|
|
if (!rb_isdigit(RSTRING_PTR(s)[RSTRING_LEN(s) - 1]))
|
|
|
|
rb_str_cat2(s, "*");
|
2008-08-22 16:27:54 +04:00
|
|
|
rb_str_cat2(s, "i");
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
return s;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.to_s -> string
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns the value as a string.
|
|
|
|
*/
|
2008-12-05 15:44:06 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_to_s(VALUE self)
|
|
|
|
{
|
2009-06-28 04:22:07 +04:00
|
|
|
return f_format(self, f_to_s);
|
2008-12-05 15:44:06 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.inspect -> string
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns the value as a string for inspection.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_inspect(VALUE self)
|
|
|
|
{
|
2008-12-03 19:43:01 +03:00
|
|
|
VALUE s;
|
2008-08-22 16:27:54 +04:00
|
|
|
|
2008-12-13 07:05:25 +03:00
|
|
|
s = rb_usascii_str_new2("(");
|
2009-06-28 04:22:07 +04:00
|
|
|
rb_str_concat(s, f_format(self, f_inspect));
|
2008-12-03 19:43:01 +03:00
|
|
|
rb_str_cat2(s, ")");
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
return s;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-27 11:46:57 +04:00
|
|
|
/* :nodoc: */
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_marshal_dump(VALUE self)
|
|
|
|
{
|
2008-09-16 14:21:23 +04:00
|
|
|
VALUE a;
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2008-09-16 14:21:23 +04:00
|
|
|
|
2008-09-21 02:49:56 +04:00
|
|
|
a = rb_assoc_new(dat->real, dat->imag);
|
2008-09-16 14:21:23 +04:00
|
|
|
rb_copy_generic_ivar(a, self);
|
|
|
|
return a;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-27 11:46:57 +04:00
|
|
|
/* :nodoc: */
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_marshal_load(VALUE self, VALUE a)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2010-08-05 13:36:16 +04:00
|
|
|
Check_Type(a, T_ARRAY);
|
2008-03-31 20:42:24 +04:00
|
|
|
dat->real = RARRAY_PTR(a)[0];
|
2008-09-21 02:49:56 +04:00
|
|
|
dat->imag = RARRAY_PTR(a)[1];
|
2008-09-16 14:21:23 +04:00
|
|
|
rb_copy_generic_ivar(self, a);
|
2008-03-31 20:42:24 +04:00
|
|
|
return self;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --- */
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_complex_raw(VALUE x, VALUE y)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return nucomp_s_new_internal(rb_cComplex, x, y);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_complex_new(VALUE x, VALUE y)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return nucomp_s_canonicalize_internal(rb_cComplex, x, y);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
VALUE
|
|
|
|
rb_complex_polar(VALUE x, VALUE y)
|
|
|
|
{
|
2009-07-05 17:46:10 +04:00
|
|
|
return f_complex_polar(rb_cComplex, x, y);
|
2008-08-22 16:27:54 +04:00
|
|
|
}
|
|
|
|
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE nucomp_s_convert(int argc, VALUE *argv, VALUE klass);
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_Complex(VALUE x, VALUE y)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
VALUE a[2];
|
|
|
|
a[0] = x;
|
|
|
|
a[1] = y;
|
|
|
|
return nucomp_s_convert(2, a, rb_cComplex);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.to_i -> integer
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Returns the value as an integer if possible.
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_to_i(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2010-08-10 16:20:49 +04:00
|
|
|
if (k_inexact_p(dat->imag) || f_nonzero_p(dat->imag)) {
|
2008-03-31 20:42:24 +04:00
|
|
|
VALUE s = f_to_s(self);
|
|
|
|
rb_raise(rb_eRangeError, "can't convert %s into Integer",
|
|
|
|
StringValuePtr(s));
|
|
|
|
}
|
|
|
|
return f_to_i(dat->real);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.to_f -> float
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Returns the value as a float if possible.
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_to_f(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2010-08-10 16:20:49 +04:00
|
|
|
if (k_inexact_p(dat->imag) || f_nonzero_p(dat->imag)) {
|
2008-03-31 20:42:24 +04:00
|
|
|
VALUE s = f_to_s(self);
|
2008-05-16 08:17:45 +04:00
|
|
|
rb_raise(rb_eRangeError, "can't convert %s into Float",
|
2008-03-31 20:42:24 +04:00
|
|
|
StringValuePtr(s));
|
|
|
|
}
|
|
|
|
return f_to_f(dat->real);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* cmp.to_r -> rational
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2011-08-10 14:35:08 +04:00
|
|
|
* If the imaginary part is exactly 0, returns the real part as a Rational,
|
|
|
|
* otherwise a RangeError is raised.
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nucomp_to_r(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
get_dat1(self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2010-08-10 16:20:49 +04:00
|
|
|
if (k_inexact_p(dat->imag) || f_nonzero_p(dat->imag)) {
|
2008-03-31 20:42:24 +04:00
|
|
|
VALUE s = f_to_s(self);
|
2008-05-16 08:17:45 +04:00
|
|
|
rb_raise(rb_eRangeError, "can't convert %s into Rational",
|
2008-03-31 20:42:24 +04:00
|
|
|
StringValuePtr(s));
|
|
|
|
}
|
|
|
|
return f_to_r(dat->real);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2010-04-26 15:14:40 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* cmp.rationalize([eps]) -> rational
|
|
|
|
*
|
2011-08-10 14:35:08 +04:00
|
|
|
* If the imaginary part is exactly 0, returns the real part as a Rational,
|
|
|
|
* otherwise a RangeError is raised.
|
2010-04-26 15:14:40 +04:00
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
nucomp_rationalize(int argc, VALUE *argv, VALUE self)
|
|
|
|
{
|
2011-08-10 14:35:08 +04:00
|
|
|
get_dat1(self);
|
|
|
|
|
2010-04-26 15:14:40 +04:00
|
|
|
rb_scan_args(argc, argv, "01", NULL);
|
2011-08-10 14:35:08 +04:00
|
|
|
|
|
|
|
if (k_inexact_p(dat->imag) || f_nonzero_p(dat->imag)) {
|
|
|
|
VALUE s = f_to_s(self);
|
|
|
|
rb_raise(rb_eRangeError, "can't convert %s into Rational",
|
|
|
|
StringValuePtr(s));
|
|
|
|
}
|
|
|
|
return rb_funcall(dat->real, rb_intern("rationalize"), argc, argv);
|
2010-04-26 15:14:40 +04:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* nil.to_c -> (0+0i)
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns zero as a complex.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
nilclass_to_c(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_complex_new1(INT2FIX(0));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* num.to_c -> complex
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns the value as a complex.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
numeric_to_c(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_complex_new1(self);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
static VALUE comp_pat0, comp_pat1, comp_pat2, a_slash, a_dot_and_an_e,
|
2008-06-09 16:02:29 +04:00
|
|
|
null_string, underscores_pat, an_underscore;
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-08-29 17:41:41 +04:00
|
|
|
#define WS "\\s*"
|
2009-07-19 15:43:23 +04:00
|
|
|
#define DIGITS "(?:[0-9](?:_[0-9]|[0-9])*)"
|
2008-03-16 03:23:43 +03:00
|
|
|
#define NUMERATOR "(?:" DIGITS "?\\.)?" DIGITS "(?:[eE][-+]?" DIGITS ")?"
|
2008-08-22 16:27:54 +04:00
|
|
|
#define DENOMINATOR DIGITS
|
2008-03-16 03:23:43 +03:00
|
|
|
#define NUMBER "[-+]?" NUMERATOR "(?:\\/" DENOMINATOR ")?"
|
|
|
|
#define NUMBERNOS NUMERATOR "(?:\\/" DENOMINATOR ")?"
|
2008-08-29 17:41:41 +04:00
|
|
|
#define PATTERN0 "\\A" WS "(" NUMBER ")@(" NUMBER ")" WS
|
|
|
|
#define PATTERN1 "\\A" WS "([-+])?(" NUMBER ")?[iIjJ]" WS
|
|
|
|
#define PATTERN2 "\\A" WS "(" NUMBER ")(([-+])(" NUMBERNOS ")?[iIjJ])?" WS
|
2008-03-16 03:23:43 +03:00
|
|
|
|
|
|
|
static void
|
|
|
|
make_patterns(void)
|
|
|
|
{
|
2008-08-22 16:27:54 +04:00
|
|
|
static const char comp_pat0_source[] = PATTERN0;
|
2008-06-09 09:42:04 +04:00
|
|
|
static const char comp_pat1_source[] = PATTERN1;
|
|
|
|
static const char comp_pat2_source[] = PATTERN2;
|
|
|
|
static const char underscores_pat_source[] = "_+";
|
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
if (comp_pat0) return;
|
|
|
|
|
|
|
|
comp_pat0 = rb_reg_new(comp_pat0_source, sizeof comp_pat0_source - 1, 0);
|
* gc.c, include/ruby/ruby.h: rename rb_register_mark_object()
to rb_gc_register_mark_object().
* eval.c, vm.c: initialize vm->mark_object_ary at
Init_top_self().
* bignum.c, complex.c, encoding.c, ext/win32ole/win32ole.c,
io.c, load.c, marshal.c, rational.c, ruby.c, vm.c:
use rb_gc_register_mark_object() instead of
rb_global_variable() or rb_gc_register_address().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-15 18:59:14 +04:00
|
|
|
rb_gc_register_mark_object(comp_pat0);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
comp_pat1 = rb_reg_new(comp_pat1_source, sizeof comp_pat1_source - 1, 0);
|
* gc.c, include/ruby/ruby.h: rename rb_register_mark_object()
to rb_gc_register_mark_object().
* eval.c, vm.c: initialize vm->mark_object_ary at
Init_top_self().
* bignum.c, complex.c, encoding.c, ext/win32ole/win32ole.c,
io.c, load.c, marshal.c, rational.c, ruby.c, vm.c:
use rb_gc_register_mark_object() instead of
rb_global_variable() or rb_gc_register_address().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-15 18:59:14 +04:00
|
|
|
rb_gc_register_mark_object(comp_pat1);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
comp_pat2 = rb_reg_new(comp_pat2_source, sizeof comp_pat2_source - 1, 0);
|
* gc.c, include/ruby/ruby.h: rename rb_register_mark_object()
to rb_gc_register_mark_object().
* eval.c, vm.c: initialize vm->mark_object_ary at
Init_top_self().
* bignum.c, complex.c, encoding.c, ext/win32ole/win32ole.c,
io.c, load.c, marshal.c, rational.c, ruby.c, vm.c:
use rb_gc_register_mark_object() instead of
rb_global_variable() or rb_gc_register_address().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-15 18:59:14 +04:00
|
|
|
rb_gc_register_mark_object(comp_pat2);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-12-13 07:05:25 +03:00
|
|
|
a_slash = rb_usascii_str_new2("/");
|
* gc.c, include/ruby/ruby.h: rename rb_register_mark_object()
to rb_gc_register_mark_object().
* eval.c, vm.c: initialize vm->mark_object_ary at
Init_top_self().
* bignum.c, complex.c, encoding.c, ext/win32ole/win32ole.c,
io.c, load.c, marshal.c, rational.c, ruby.c, vm.c:
use rb_gc_register_mark_object() instead of
rb_global_variable() or rb_gc_register_address().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-15 18:59:14 +04:00
|
|
|
rb_gc_register_mark_object(a_slash);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-12-13 07:05:25 +03:00
|
|
|
a_dot_and_an_e = rb_usascii_str_new2(".eE");
|
* gc.c, include/ruby/ruby.h: rename rb_register_mark_object()
to rb_gc_register_mark_object().
* eval.c, vm.c: initialize vm->mark_object_ary at
Init_top_self().
* bignum.c, complex.c, encoding.c, ext/win32ole/win32ole.c,
io.c, load.c, marshal.c, rational.c, ruby.c, vm.c:
use rb_gc_register_mark_object() instead of
rb_global_variable() or rb_gc_register_address().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-15 18:59:14 +04:00
|
|
|
rb_gc_register_mark_object(a_dot_and_an_e);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-12-13 07:05:25 +03:00
|
|
|
null_string = rb_usascii_str_new2("");
|
* gc.c, include/ruby/ruby.h: rename rb_register_mark_object()
to rb_gc_register_mark_object().
* eval.c, vm.c: initialize vm->mark_object_ary at
Init_top_self().
* bignum.c, complex.c, encoding.c, ext/win32ole/win32ole.c,
io.c, load.c, marshal.c, rational.c, ruby.c, vm.c:
use rb_gc_register_mark_object() instead of
rb_global_variable() or rb_gc_register_address().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-15 18:59:14 +04:00
|
|
|
rb_gc_register_mark_object(null_string);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
underscores_pat = rb_reg_new(underscores_pat_source,
|
|
|
|
sizeof underscores_pat_source - 1, 0);
|
* gc.c, include/ruby/ruby.h: rename rb_register_mark_object()
to rb_gc_register_mark_object().
* eval.c, vm.c: initialize vm->mark_object_ary at
Init_top_self().
* bignum.c, complex.c, encoding.c, ext/win32ole/win32ole.c,
io.c, load.c, marshal.c, rational.c, ruby.c, vm.c:
use rb_gc_register_mark_object() instead of
rb_global_variable() or rb_gc_register_address().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-15 18:59:14 +04:00
|
|
|
rb_gc_register_mark_object(underscores_pat);
|
2008-03-19 12:37:39 +03:00
|
|
|
|
2008-12-13 07:05:25 +03:00
|
|
|
an_underscore = rb_usascii_str_new2("_");
|
* gc.c, include/ruby/ruby.h: rename rb_register_mark_object()
to rb_gc_register_mark_object().
* eval.c, vm.c: initialize vm->mark_object_ary at
Init_top_self().
* bignum.c, complex.c, encoding.c, ext/win32ole/win32ole.c,
io.c, load.c, marshal.c, rational.c, ruby.c, vm.c:
use rb_gc_register_mark_object() instead of
rb_global_variable() or rb_gc_register_address().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2008-09-15 18:59:14 +04:00
|
|
|
rb_gc_register_mark_object(an_underscore);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define id_match rb_intern("match")
|
2010-12-05 04:37:16 +03:00
|
|
|
#define f_match(x,y) rb_funcall((x), id_match, 1, (y))
|
2008-03-16 03:23:43 +03:00
|
|
|
|
|
|
|
#define id_gsub_bang rb_intern("gsub!")
|
2010-12-05 04:37:16 +03:00
|
|
|
#define f_gsub_bang(x,y,z) rb_funcall((x), id_gsub_bang, 2, (y), (z))
|
2008-03-16 03:23:43 +03:00
|
|
|
|
|
|
|
static VALUE
|
|
|
|
string_to_c_internal(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
VALUE s;
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-08-29 17:41:41 +04:00
|
|
|
s = self;
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
if (RSTRING_LEN(s) == 0)
|
|
|
|
return rb_assoc_new(Qnil, self);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
{
|
2008-06-13 16:29:50 +04:00
|
|
|
VALUE m, sr, si, re, r, i;
|
2008-08-22 16:27:54 +04:00
|
|
|
int po;
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-08-22 16:27:54 +04:00
|
|
|
m = f_match(comp_pat0, s);
|
2008-03-31 20:42:24 +04:00
|
|
|
if (!NIL_P(m)) {
|
2011-06-09 19:36:13 +04:00
|
|
|
sr = rb_reg_nth_match(1, m);
|
|
|
|
si = rb_reg_nth_match(2, m);
|
|
|
|
re = rb_reg_match_post(m);
|
|
|
|
po = 1;
|
2008-08-22 16:27:54 +04:00
|
|
|
}
|
|
|
|
if (NIL_P(m)) {
|
|
|
|
m = f_match(comp_pat1, s);
|
|
|
|
if (!NIL_P(m)) {
|
|
|
|
sr = Qnil;
|
2011-06-09 19:36:13 +04:00
|
|
|
si = rb_reg_nth_match(1, m);
|
2008-06-09 19:13:45 +04:00
|
|
|
if (NIL_P(si))
|
2008-12-13 07:05:25 +03:00
|
|
|
si = rb_usascii_str_new2("");
|
2008-08-22 16:27:54 +04:00
|
|
|
{
|
|
|
|
VALUE t;
|
|
|
|
|
2011-06-09 19:36:13 +04:00
|
|
|
t = rb_reg_nth_match(2, m);
|
2008-08-22 16:27:54 +04:00
|
|
|
if (NIL_P(t))
|
2008-12-13 07:05:25 +03:00
|
|
|
t = rb_usascii_str_new2("1");
|
2008-08-22 16:27:54 +04:00
|
|
|
rb_str_concat(si, t);
|
|
|
|
}
|
2011-06-09 19:36:13 +04:00
|
|
|
re = rb_reg_match_post(m);
|
2008-08-22 16:27:54 +04:00
|
|
|
po = 0;
|
2008-06-09 19:13:45 +04:00
|
|
|
}
|
2008-03-31 20:42:24 +04:00
|
|
|
}
|
|
|
|
if (NIL_P(m)) {
|
|
|
|
m = f_match(comp_pat2, s);
|
2008-09-14 13:35:08 +04:00
|
|
|
if (NIL_P(m))
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_assoc_new(Qnil, self);
|
2011-06-09 19:36:13 +04:00
|
|
|
sr = rb_reg_nth_match(1, m);
|
|
|
|
if (NIL_P(rb_reg_nth_match(2, m)))
|
2008-06-09 19:13:45 +04:00
|
|
|
si = Qnil;
|
2008-06-09 16:02:29 +04:00
|
|
|
else {
|
2008-06-09 19:13:45 +04:00
|
|
|
VALUE t;
|
|
|
|
|
2011-06-09 19:36:13 +04:00
|
|
|
si = rb_reg_nth_match(3, m);
|
|
|
|
t = rb_reg_nth_match(4, m);
|
2008-06-09 19:13:45 +04:00
|
|
|
if (NIL_P(t))
|
2008-12-13 07:05:25 +03:00
|
|
|
t = rb_usascii_str_new2("1");
|
2008-06-09 19:13:45 +04:00
|
|
|
rb_str_concat(si, t);
|
2008-06-09 16:02:29 +04:00
|
|
|
}
|
2011-06-09 19:36:13 +04:00
|
|
|
re = rb_reg_match_post(m);
|
2008-08-22 16:27:54 +04:00
|
|
|
po = 0;
|
2008-03-31 20:42:24 +04:00
|
|
|
}
|
|
|
|
r = INT2FIX(0);
|
|
|
|
i = INT2FIX(0);
|
|
|
|
if (!NIL_P(sr)) {
|
2011-04-24 17:24:02 +04:00
|
|
|
if (strchr(RSTRING_PTR(sr), '/'))
|
2008-03-31 20:42:24 +04:00
|
|
|
r = f_to_r(sr);
|
2011-05-09 15:31:26 +04:00
|
|
|
else if (strpbrk(RSTRING_PTR(sr), ".eE"))
|
2008-03-31 20:42:24 +04:00
|
|
|
r = f_to_f(sr);
|
|
|
|
else
|
|
|
|
r = f_to_i(sr);
|
|
|
|
}
|
|
|
|
if (!NIL_P(si)) {
|
2011-04-24 17:24:02 +04:00
|
|
|
if (strchr(RSTRING_PTR(si), '/'))
|
2008-03-31 20:42:24 +04:00
|
|
|
i = f_to_r(si);
|
2011-05-09 15:31:26 +04:00
|
|
|
else if (strpbrk(RSTRING_PTR(si), ".eE"))
|
2008-03-31 20:42:24 +04:00
|
|
|
i = f_to_f(si);
|
|
|
|
else
|
|
|
|
i = f_to_i(si);
|
|
|
|
}
|
2008-08-22 16:27:54 +04:00
|
|
|
if (po)
|
|
|
|
return rb_assoc_new(rb_complex_polar(r, i), re);
|
|
|
|
else
|
|
|
|
return rb_assoc_new(rb_complex_new2(r, i), re);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
string_to_c_strict(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
VALUE a = string_to_c_internal(self);
|
|
|
|
if (NIL_P(RARRAY_PTR(a)[0]) || RSTRING_LEN(RARRAY_PTR(a)[1]) > 0) {
|
|
|
|
VALUE s = f_inspect(self);
|
2008-12-29 17:26:16 +03:00
|
|
|
rb_raise(rb_eArgError, "invalid value for convert(): %s",
|
2008-03-31 20:42:24 +04:00
|
|
|
StringValuePtr(s));
|
|
|
|
}
|
|
|
|
return RARRAY_PTR(a)[0];
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#define id_gsub rb_intern("gsub")
|
2010-12-05 04:37:16 +03:00
|
|
|
#define f_gsub(x,y,z) rb_funcall((x), id_gsub, 2, (y), (z))
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2009-06-20 01:57:51 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* str.to_c -> complex
|
2009-06-20 01:57:51 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Returns a complex which denotes the string form. The parser
|
|
|
|
* ignores leading whitespaces and trailing garbage. Any digit
|
2009-11-03 20:46:28 +03:00
|
|
|
* sequences can be separated by an underscore. Returns zero for null
|
2009-06-27 14:35:17 +04:00
|
|
|
* or garbage string.
|
2009-06-20 01:57:51 +04:00
|
|
|
*
|
|
|
|
* For example:
|
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* '9'.to_c #=> (9+0i)
|
2009-07-03 18:02:38 +04:00
|
|
|
* '2.5'.to_c #=> (2.5+0i)
|
|
|
|
* '2.5/1'.to_c #=> ((5/2)+0i)
|
2009-06-27 11:46:57 +04:00
|
|
|
* '-3/2'.to_c #=> ((-3/2)+0i)
|
|
|
|
* '-i'.to_c #=> (0-1i)
|
|
|
|
* '45i'.to_c #=> (0+45i)
|
|
|
|
* '3-4i'.to_c #=> (3-4i)
|
|
|
|
* '-4e2-4e-2i'.to_c #=> (-400.0-0.04i)
|
|
|
|
* '-0.0-0.0i'.to_c #=> (-0.0-0.0i)
|
|
|
|
* '1/2+3/4i'.to_c #=> ((1/2)+(3/4)*i)
|
|
|
|
* 'ruby'.to_c #=> (0+0i)
|
2009-06-20 01:57:51 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
string_to_c(VALUE self)
|
|
|
|
{
|
2008-06-13 16:29:50 +04:00
|
|
|
VALUE s, a, backref;
|
|
|
|
|
|
|
|
backref = rb_backref_get();
|
|
|
|
rb_match_busy(backref);
|
|
|
|
|
|
|
|
s = f_gsub(self, underscores_pat, an_underscore);
|
|
|
|
a = string_to_c_internal(s);
|
|
|
|
|
|
|
|
rb_backref_set(backref);
|
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
if (!NIL_P(RARRAY_PTR(a)[0]))
|
|
|
|
return RARRAY_PTR(a)[0];
|
|
|
|
return rb_complex_new1(INT2FIX(0));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
nucomp_s_convert(int argc, VALUE *argv, VALUE klass)
|
|
|
|
{
|
2008-06-13 16:29:50 +04:00
|
|
|
VALUE a1, a2, backref;
|
2008-03-31 20:42:24 +04:00
|
|
|
|
2008-09-21 13:07:25 +04:00
|
|
|
rb_scan_args(argc, argv, "11", &a1, &a2);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2009-06-18 17:41:44 +04:00
|
|
|
if (NIL_P(a1) || (argc == 2 && NIL_P(a2)))
|
|
|
|
rb_raise(rb_eTypeError, "can't convert nil into Complex");
|
|
|
|
|
2008-06-13 16:29:50 +04:00
|
|
|
backref = rb_backref_get();
|
|
|
|
rb_match_busy(backref);
|
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
switch (TYPE(a1)) {
|
|
|
|
case T_FIXNUM:
|
|
|
|
case T_BIGNUM:
|
|
|
|
case T_FLOAT:
|
|
|
|
break;
|
|
|
|
case T_STRING:
|
|
|
|
a1 = string_to_c_strict(a1);
|
|
|
|
break;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
switch (TYPE(a2)) {
|
|
|
|
case T_FIXNUM:
|
|
|
|
case T_BIGNUM:
|
|
|
|
case T_FLOAT:
|
|
|
|
break;
|
|
|
|
case T_STRING:
|
|
|
|
a2 = string_to_c_strict(a2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-06-13 16:29:50 +04:00
|
|
|
rb_backref_set(backref);
|
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
switch (TYPE(a1)) {
|
|
|
|
case T_COMPLEX:
|
2008-04-22 17:17:04 +04:00
|
|
|
{
|
|
|
|
get_dat1(a1);
|
2008-03-31 20:42:24 +04:00
|
|
|
|
2009-07-12 16:09:21 +04:00
|
|
|
if (k_exact_zero_p(dat->imag))
|
2008-04-22 17:17:04 +04:00
|
|
|
a1 = dat->real;
|
|
|
|
}
|
2008-03-31 20:42:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (TYPE(a2)) {
|
|
|
|
case T_COMPLEX:
|
2008-04-22 17:17:04 +04:00
|
|
|
{
|
|
|
|
get_dat1(a2);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2009-07-12 16:09:21 +04:00
|
|
|
if (k_exact_zero_p(dat->imag))
|
2008-04-22 17:17:04 +04:00
|
|
|
a2 = dat->real;
|
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
switch (TYPE(a1)) {
|
|
|
|
case T_COMPLEX:
|
2009-07-12 16:09:21 +04:00
|
|
|
if (argc == 1 || (k_exact_zero_p(a2)))
|
2008-03-31 20:42:24 +04:00
|
|
|
return a1;
|
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-09-21 13:07:25 +04:00
|
|
|
if (argc == 1) {
|
2008-09-21 05:30:25 +04:00
|
|
|
if (k_numeric_p(a1) && !f_real_p(a1))
|
|
|
|
return a1;
|
2010-11-23 17:28:55 +03:00
|
|
|
/* should raise exception for consistency */
|
2009-06-18 17:41:44 +04:00
|
|
|
if (!k_numeric_p(a1))
|
|
|
|
return rb_convert_type(a1, T_COMPLEX, "Complex", "to_c");
|
2008-09-21 05:30:25 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if ((k_numeric_p(a1) && k_numeric_p(a2)) &&
|
|
|
|
(!f_real_p(a1) || !f_real_p(a2)))
|
|
|
|
return f_add(a1,
|
|
|
|
f_mul(a2,
|
|
|
|
f_complex_new_bang2(rb_cComplex, ZERO, ONE)));
|
|
|
|
}
|
2008-09-17 15:00:09 +04:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
{
|
|
|
|
VALUE argv2[2];
|
|
|
|
argv2[0] = a1;
|
|
|
|
argv2[1] = a2;
|
|
|
|
return nucomp_s_new(argc, argv2, klass);
|
|
|
|
}
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --- */
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* num.real -> self
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns self.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
numeric_real(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return self;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* num.imag -> 0
|
|
|
|
* num.imaginary -> 0
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns zero.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
2008-09-21 02:49:56 +04:00
|
|
|
numeric_imag(VALUE self)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return INT2FIX(0);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* num.abs2 -> real
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns square of self.
|
|
|
|
*/
|
2008-08-31 15:51:04 +04:00
|
|
|
static VALUE
|
|
|
|
numeric_abs2(VALUE self)
|
|
|
|
{
|
|
|
|
return f_mul(self, self);
|
|
|
|
}
|
|
|
|
|
2008-03-16 03:23:43 +03:00
|
|
|
#define id_PI rb_intern("PI")
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-07-03 14:50:17 +04:00
|
|
|
* num.arg -> 0 or float
|
|
|
|
* num.angle -> 0 or float
|
|
|
|
* num.phase -> 0 or float
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-20 03:57:34 +04:00
|
|
|
* Returns 0 if the value is positive, pi otherwise.
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
numeric_arg(VALUE self)
|
|
|
|
{
|
2008-09-21 16:21:32 +04:00
|
|
|
if (f_positive_p(self))
|
2008-03-31 20:42:24 +04:00
|
|
|
return INT2FIX(0);
|
|
|
|
return rb_const_get(rb_mMath, id_PI);
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* num.rect -> array
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Returns an array; [num, 0].
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-08-29 17:41:41 +04:00
|
|
|
static VALUE
|
|
|
|
numeric_rect(VALUE self)
|
|
|
|
{
|
2008-09-19 17:55:52 +04:00
|
|
|
return rb_assoc_new(self, INT2FIX(0));
|
2008-08-29 17:41:41 +04:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* num.polar -> array
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Returns an array; [num.abs, num.arg].
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
|
|
|
numeric_polar(VALUE self)
|
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return rb_assoc_new(f_abs(self), f_arg(self));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2009-06-27 11:46:57 +04:00
|
|
|
* num.conj -> self
|
2009-11-03 20:46:28 +03:00
|
|
|
* num.conjugate -> self
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
|
|
|
* Returns self.
|
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
static VALUE
|
2008-09-17 15:00:09 +04:00
|
|
|
numeric_conj(VALUE self)
|
2008-03-16 03:23:43 +03:00
|
|
|
{
|
2008-03-31 20:42:24 +04:00
|
|
|
return self;
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
|
|
|
|
2009-07-03 14:50:17 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* flo.arg -> 0 or float
|
|
|
|
* flo.angle -> 0 or float
|
|
|
|
* flo.phase -> 0 or float
|
|
|
|
*
|
|
|
|
* Returns 0 if the value is positive, pi otherwise.
|
|
|
|
*/
|
|
|
|
static VALUE
|
|
|
|
float_arg(VALUE self)
|
|
|
|
{
|
|
|
|
if (isnan(RFLOAT_VALUE(self)))
|
|
|
|
return self;
|
2009-07-05 15:44:34 +04:00
|
|
|
if (f_tpositive_p(self))
|
|
|
|
return INT2FIX(0);
|
|
|
|
return rb_const_get(rb_mMath, id_PI);
|
2009-07-03 14:50:17 +04:00
|
|
|
}
|
|
|
|
|
2009-06-19 22:35:39 +04:00
|
|
|
/*
|
2009-06-27 11:46:57 +04:00
|
|
|
* A complex number can be represented as a paired real number with
|
|
|
|
* imaginary unit; a+bi. Where a is real part, b is imaginary part
|
|
|
|
* and i is imaginary unit. Real a equals complex a+0i
|
|
|
|
* mathematically.
|
|
|
|
*
|
|
|
|
* In ruby, you can create complex object with Complex, Complex::rect,
|
|
|
|
* Complex::polar or to_c method.
|
|
|
|
*
|
|
|
|
* Complex(1) #=> (1+0i)
|
|
|
|
* Complex(2, 3) #=> (2+3i)
|
|
|
|
* Complex.polar(2, 3) #=> (-1.9799849932008908+0.2822400161197344i)
|
|
|
|
* 3.to_c #=> (3+0i)
|
|
|
|
*
|
|
|
|
* You can also create complex object from floating-point numbers or
|
|
|
|
* strings.
|
|
|
|
*
|
|
|
|
* Complex(0.3) #=> (0.3+0i)
|
|
|
|
* Complex('0.3-0.5i') #=> (0.3-0.5i)
|
|
|
|
* Complex('2/3+3/4i') #=> ((2/3)+(3/4)*i)
|
|
|
|
* Complex('1@2') #=> (-0.4161468365471424+0.9092974268256817i)
|
|
|
|
*
|
|
|
|
* 0.3.to_c #=> (0.3+0i)
|
|
|
|
* '0.3-0.5i'.to_c #=> (0.3-0.5i)
|
|
|
|
* '2/3+3/4i'.to_c #=> ((2/3)+(3/4)*i)
|
|
|
|
* '1@2'.to_c #=> (-0.4161468365471424+0.9092974268256817i)
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* A complex object is either an exact or an inexact number.
|
2009-06-19 22:35:39 +04:00
|
|
|
*
|
2009-06-27 11:46:57 +04:00
|
|
|
* Complex(1, 1) / 2 #=> ((1/2)+(1/2)*i)
|
|
|
|
* Complex(1, 1) / 2.0 #=> (0.5+0.5i)
|
2009-06-19 22:35:39 +04:00
|
|
|
*/
|
2008-03-16 03:23:43 +03:00
|
|
|
void
|
|
|
|
Init_Complex(void)
|
|
|
|
{
|
2008-06-09 13:25:32 +04:00
|
|
|
#undef rb_intern
|
2008-08-16 04:20:31 +04:00
|
|
|
#define rb_intern(str) rb_intern_const(str)
|
2008-06-09 13:25:32 +04:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
assert(fprintf(stderr, "assert() is now active\n"));
|
|
|
|
|
|
|
|
id_abs = rb_intern("abs");
|
|
|
|
id_abs2 = rb_intern("abs2");
|
|
|
|
id_arg = rb_intern("arg");
|
|
|
|
id_cmp = rb_intern("<=>");
|
2008-09-17 15:00:09 +04:00
|
|
|
id_conj = rb_intern("conj");
|
2008-03-31 20:42:24 +04:00
|
|
|
id_convert = rb_intern("convert");
|
|
|
|
id_denominator = rb_intern("denominator");
|
|
|
|
id_divmod = rb_intern("divmod");
|
2009-07-03 16:19:54 +04:00
|
|
|
id_eqeq_p = rb_intern("==");
|
2008-03-31 20:42:24 +04:00
|
|
|
id_expt = rb_intern("**");
|
2009-06-14 02:57:02 +04:00
|
|
|
id_fdiv = rb_intern("fdiv");
|
2008-03-31 20:42:24 +04:00
|
|
|
id_floor = rb_intern("floor");
|
|
|
|
id_idiv = rb_intern("div");
|
2009-06-29 16:03:25 +04:00
|
|
|
id_imag = rb_intern("imag");
|
2008-03-31 20:42:24 +04:00
|
|
|
id_inspect = rb_intern("inspect");
|
|
|
|
id_negate = rb_intern("-@");
|
|
|
|
id_numerator = rb_intern("numerator");
|
|
|
|
id_quo = rb_intern("quo");
|
2009-06-29 16:03:25 +04:00
|
|
|
id_real = rb_intern("real");
|
2008-09-17 02:04:19 +04:00
|
|
|
id_real_p = rb_intern("real?");
|
2008-03-31 20:42:24 +04:00
|
|
|
id_to_f = rb_intern("to_f");
|
|
|
|
id_to_i = rb_intern("to_i");
|
|
|
|
id_to_r = rb_intern("to_r");
|
|
|
|
id_to_s = rb_intern("to_s");
|
|
|
|
|
2009-06-19 15:47:53 +04:00
|
|
|
rb_cComplex = rb_define_class("Complex", rb_cNumeric);
|
2008-03-31 20:42:24 +04:00
|
|
|
|
|
|
|
rb_define_alloc_func(rb_cComplex, nucomp_s_alloc);
|
2008-09-24 12:44:47 +04:00
|
|
|
rb_undef_method(CLASS_OF(rb_cComplex), "allocate");
|
2008-03-31 20:42:24 +04:00
|
|
|
|
2008-09-23 14:33:27 +04:00
|
|
|
#if 0
|
2008-09-24 12:02:17 +04:00
|
|
|
rb_define_private_method(CLASS_OF(rb_cComplex), "new!", nucomp_s_new_bang, -1);
|
|
|
|
rb_define_private_method(CLASS_OF(rb_cComplex), "new", nucomp_s_new, -1);
|
2008-09-23 14:33:27 +04:00
|
|
|
#else
|
|
|
|
rb_undef_method(CLASS_OF(rb_cComplex), "new");
|
|
|
|
#endif
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_singleton_method(rb_cComplex, "rectangular", nucomp_s_new, -1);
|
2008-08-29 17:41:41 +04:00
|
|
|
rb_define_singleton_method(rb_cComplex, "rect", nucomp_s_new, -1);
|
2009-07-05 17:46:10 +04:00
|
|
|
rb_define_singleton_method(rb_cComplex, "polar", nucomp_s_polar, -1);
|
2008-03-31 20:42:24 +04:00
|
|
|
|
2009-06-19 15:47:53 +04:00
|
|
|
rb_define_global_function("Complex", nucomp_f_complex, -1);
|
2008-03-31 20:42:24 +04:00
|
|
|
|
2009-07-03 14:50:17 +04:00
|
|
|
rb_undef_method(rb_cComplex, "%");
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_undef_method(rb_cComplex, "<");
|
|
|
|
rb_undef_method(rb_cComplex, "<=");
|
|
|
|
rb_undef_method(rb_cComplex, "<=>");
|
|
|
|
rb_undef_method(rb_cComplex, ">");
|
|
|
|
rb_undef_method(rb_cComplex, ">=");
|
|
|
|
rb_undef_method(rb_cComplex, "between?");
|
2009-07-03 14:50:17 +04:00
|
|
|
rb_undef_method(rb_cComplex, "div");
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_undef_method(rb_cComplex, "divmod");
|
|
|
|
rb_undef_method(rb_cComplex, "floor");
|
|
|
|
rb_undef_method(rb_cComplex, "ceil");
|
|
|
|
rb_undef_method(rb_cComplex, "modulo");
|
2009-07-03 14:50:17 +04:00
|
|
|
rb_undef_method(rb_cComplex, "remainder");
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_undef_method(rb_cComplex, "round");
|
|
|
|
rb_undef_method(rb_cComplex, "step");
|
|
|
|
rb_undef_method(rb_cComplex, "truncate");
|
2009-08-17 02:28:48 +04:00
|
|
|
rb_undef_method(rb_cComplex, "i");
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-12-13 02:40:55 +03:00
|
|
|
#if 0 /* NUBY */
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_undef_method(rb_cComplex, "//");
|
2008-03-16 03:23:43 +03:00
|
|
|
#endif
|
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "real", nucomp_real, 0);
|
2008-09-21 02:49:56 +04:00
|
|
|
rb_define_method(rb_cComplex, "imaginary", nucomp_imag, 0);
|
|
|
|
rb_define_method(rb_cComplex, "imag", nucomp_imag, 0);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-09-14 05:16:44 +04:00
|
|
|
rb_define_method(rb_cComplex, "-@", nucomp_negate, 0);
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "+", nucomp_add, 1);
|
|
|
|
rb_define_method(rb_cComplex, "-", nucomp_sub, 1);
|
|
|
|
rb_define_method(rb_cComplex, "*", nucomp_mul, 1);
|
|
|
|
rb_define_method(rb_cComplex, "/", nucomp_div, 1);
|
2008-04-03 20:01:16 +04:00
|
|
|
rb_define_method(rb_cComplex, "quo", nucomp_quo, 1);
|
|
|
|
rb_define_method(rb_cComplex, "fdiv", nucomp_fdiv, 1);
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "**", nucomp_expt, 1);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2009-07-03 16:19:54 +04:00
|
|
|
rb_define_method(rb_cComplex, "==", nucomp_eqeq_p, 1);
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "coerce", nucomp_coerce, 1);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "abs", nucomp_abs, 0);
|
|
|
|
rb_define_method(rb_cComplex, "magnitude", nucomp_abs, 0);
|
|
|
|
rb_define_method(rb_cComplex, "abs2", nucomp_abs2, 0);
|
|
|
|
rb_define_method(rb_cComplex, "arg", nucomp_arg, 0);
|
|
|
|
rb_define_method(rb_cComplex, "angle", nucomp_arg, 0);
|
2008-08-29 17:41:41 +04:00
|
|
|
rb_define_method(rb_cComplex, "phase", nucomp_arg, 0);
|
|
|
|
rb_define_method(rb_cComplex, "rectangular", nucomp_rect, 0);
|
|
|
|
rb_define_method(rb_cComplex, "rect", nucomp_rect, 0);
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "polar", nucomp_polar, 0);
|
2008-09-17 15:00:09 +04:00
|
|
|
rb_define_method(rb_cComplex, "conjugate", nucomp_conj, 0);
|
|
|
|
rb_define_method(rb_cComplex, "conj", nucomp_conj, 0);
|
2008-03-16 03:23:43 +03:00
|
|
|
#if 0
|
2008-09-17 15:00:09 +04:00
|
|
|
rb_define_method(rb_cComplex, "~", nucomp_conj, 0); /* gcc */
|
2008-03-16 03:23:43 +03:00
|
|
|
#endif
|
|
|
|
|
2008-09-13 05:55:56 +04:00
|
|
|
rb_define_method(rb_cComplex, "real?", nucomp_false, 0);
|
2008-09-17 02:04:19 +04:00
|
|
|
#if 0
|
2008-09-13 05:55:56 +04:00
|
|
|
rb_define_method(rb_cComplex, "complex?", nucomp_true, 0);
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "exact?", nucomp_exact_p, 0);
|
|
|
|
rb_define_method(rb_cComplex, "inexact?", nucomp_inexact_p, 0);
|
2008-03-16 03:23:43 +03:00
|
|
|
#endif
|
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "numerator", nucomp_numerator, 0);
|
|
|
|
rb_define_method(rb_cComplex, "denominator", nucomp_denominator, 0);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "hash", nucomp_hash, 0);
|
2008-09-15 08:20:46 +04:00
|
|
|
rb_define_method(rb_cComplex, "eql?", nucomp_eql_p, 1);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "to_s", nucomp_to_s, 0);
|
|
|
|
rb_define_method(rb_cComplex, "inspect", nucomp_inspect, 0);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "marshal_dump", nucomp_marshal_dump, 0);
|
|
|
|
rb_define_method(rb_cComplex, "marshal_load", nucomp_marshal_load, 1);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
/* --- */
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cComplex, "to_i", nucomp_to_i, 0);
|
|
|
|
rb_define_method(rb_cComplex, "to_f", nucomp_to_f, 0);
|
|
|
|
rb_define_method(rb_cComplex, "to_r", nucomp_to_r, 0);
|
2010-04-26 15:14:40 +04:00
|
|
|
rb_define_method(rb_cComplex, "rationalize", nucomp_rationalize, -1);
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cNilClass, "to_c", nilclass_to_c, 0);
|
|
|
|
rb_define_method(rb_cNumeric, "to_c", numeric_to_c, 0);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
make_patterns();
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cString, "to_c", string_to_c, 0);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-09-24 12:02:17 +04:00
|
|
|
rb_define_private_method(CLASS_OF(rb_cComplex), "convert", nucomp_s_convert, -1);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
/* --- */
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cNumeric, "real", numeric_real, 0);
|
2008-09-21 02:49:56 +04:00
|
|
|
rb_define_method(rb_cNumeric, "imaginary", numeric_imag, 0);
|
|
|
|
rb_define_method(rb_cNumeric, "imag", numeric_imag, 0);
|
2008-08-31 15:51:04 +04:00
|
|
|
rb_define_method(rb_cNumeric, "abs2", numeric_abs2, 0);
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cNumeric, "arg", numeric_arg, 0);
|
|
|
|
rb_define_method(rb_cNumeric, "angle", numeric_arg, 0);
|
2008-08-29 17:41:41 +04:00
|
|
|
rb_define_method(rb_cNumeric, "phase", numeric_arg, 0);
|
|
|
|
rb_define_method(rb_cNumeric, "rectangular", numeric_rect, 0);
|
|
|
|
rb_define_method(rb_cNumeric, "rect", numeric_rect, 0);
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_method(rb_cNumeric, "polar", numeric_polar, 0);
|
2008-09-17 15:00:09 +04:00
|
|
|
rb_define_method(rb_cNumeric, "conjugate", numeric_conj, 0);
|
|
|
|
rb_define_method(rb_cNumeric, "conj", numeric_conj, 0);
|
2008-03-16 03:23:43 +03:00
|
|
|
|
2009-07-03 14:50:17 +04:00
|
|
|
rb_define_method(rb_cFloat, "arg", float_arg, 0);
|
|
|
|
rb_define_method(rb_cFloat, "angle", float_arg, 0);
|
|
|
|
rb_define_method(rb_cFloat, "phase", float_arg, 0);
|
|
|
|
|
2008-03-31 20:42:24 +04:00
|
|
|
rb_define_const(rb_cComplex, "I",
|
|
|
|
f_complex_new_bang2(rb_cComplex, ZERO, ONE));
|
2008-03-16 03:23:43 +03:00
|
|
|
}
|
2008-09-14 05:16:44 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
Local variables:
|
|
|
|
c-file-style: "ruby"
|
2008-09-14 13:35:08 +04:00
|
|
|
End:
|
2008-09-14 05:16:44 +04:00
|
|
|
*/
|