1998-01-16 07:13:05 -05:00
|
|
|
/************************************************
|
|
|
|
|
|
|
|
math.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Tue Jan 25 14:12:56 JST 1994
|
|
|
|
|
|
|
|
Copyright (C) 1993-1996 Yukihiro Matsumoto
|
|
|
|
|
|
|
|
************************************************/
|
|
|
|
|
|
|
|
#include "ruby.h"
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
VALUE mMath;
|
|
|
|
|
1998-01-16 07:19:22 -05:00
|
|
|
#define Need_Float(x) (x) = rb_Float(x)
|
1998-01-16 07:13:05 -05:00
|
|
|
#define Need_Float2(x,y) {\
|
|
|
|
Need_Float(x);\
|
|
|
|
Need_Float(y);\
|
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
math_atan2(obj, x, y)
|
1998-01-16 07:19:22 -05:00
|
|
|
VALUE obj, x, y;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
Need_Float2(x, y);
|
1998-01-16 07:19:22 -05:00
|
|
|
return float_new(atan2(RFLOAT(x)->value, RFLOAT(y)->value));
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
math_cos(obj, x)
|
1998-01-16 07:19:22 -05:00
|
|
|
VALUE obj, x;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
Need_Float(x);
|
|
|
|
|
1998-01-16 07:19:22 -05:00
|
|
|
return float_new(cos(RFLOAT(x)->value));
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
math_sin(obj, x)
|
1998-01-16 07:19:22 -05:00
|
|
|
VALUE obj, x;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
Need_Float(x);
|
|
|
|
|
1998-01-16 07:19:22 -05:00
|
|
|
return float_new(sin(RFLOAT(x)->value));
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
math_tan(obj, x)
|
1998-01-16 07:19:22 -05:00
|
|
|
VALUE obj, x;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
Need_Float(x);
|
|
|
|
|
1998-01-16 07:19:22 -05:00
|
|
|
return float_new(tan(RFLOAT(x)->value));
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
math_exp(obj, x)
|
1998-01-16 07:19:22 -05:00
|
|
|
VALUE obj, x;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
Need_Float(x);
|
1998-01-16 07:19:22 -05:00
|
|
|
return float_new(exp(RFLOAT(x)->value));
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
math_log(obj, x)
|
1998-01-16 07:19:22 -05:00
|
|
|
VALUE obj, x;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
Need_Float(x);
|
1998-01-16 07:19:22 -05:00
|
|
|
return float_new(log(RFLOAT(x)->value));
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
math_log10(obj, x)
|
1998-01-16 07:19:22 -05:00
|
|
|
VALUE obj, x;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
Need_Float(x);
|
1998-01-16 07:19:22 -05:00
|
|
|
return float_new(log10(RFLOAT(x)->value));
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
math_sqrt(obj, x)
|
1998-01-16 07:19:22 -05:00
|
|
|
VALUE obj, x;
|
1998-01-16 07:13:05 -05:00
|
|
|
{
|
|
|
|
Need_Float(x);
|
|
|
|
|
1998-01-16 07:19:22 -05:00
|
|
|
if (RFLOAT(x)->value < 0.0) ArgError("square root for negative number");
|
|
|
|
return float_new(sqrt(RFLOAT(x)->value));
|
1998-01-16 07:13:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
Init_Math()
|
|
|
|
{
|
|
|
|
mMath = rb_define_module("Math");
|
|
|
|
|
|
|
|
#ifdef M_PI
|
|
|
|
rb_define_const(mMath, "PI", float_new(M_PI));
|
|
|
|
#else
|
|
|
|
rb_define_const(mMath, "PI", float_new(atan(1.0)*4.0));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef M_E
|
|
|
|
rb_define_const(mMath, "E", float_new(M_E));
|
|
|
|
#else
|
|
|
|
rb_define_const(mMath, "E", float_new(exp(1.0)));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
rb_define_module_function(mMath, "atan2", math_atan2, 2);
|
|
|
|
rb_define_module_function(mMath, "cos", math_cos, 1);
|
|
|
|
rb_define_module_function(mMath, "sin", math_sin, 1);
|
|
|
|
rb_define_module_function(mMath, "tan", math_tan, 1);
|
|
|
|
|
|
|
|
rb_define_module_function(mMath, "exp", math_exp, 1);
|
|
|
|
rb_define_module_function(mMath, "log", math_log, 1);
|
|
|
|
rb_define_module_function(mMath, "log10", math_log10, 1);
|
|
|
|
rb_define_module_function(mMath, "sqrt", math_sqrt, 1);
|
|
|
|
}
|