1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/mathn.rb: Improve documentation. Patch by Sandor Szucs.

[Ruby 1.9 - Bug #4767]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31707 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2011-05-23 00:08:30 +00:00
parent c651520c13
commit 1e13786700
2 changed files with 100 additions and 9 deletions

View file

@ -1,3 +1,8 @@
Mon May 23 09:08:07 2011 Eric Hodel <drbrain@segment7.net>
* lib/mathn.rb: Improve documentation. Patch by Sandor Szucs.
[Ruby 1.9 - Bug #4767]
Mon May 23 08:45:55 2011 Eric Hodel <drbrain@segment7.net> Mon May 23 08:45:55 2011 Eric Hodel <drbrain@segment7.net>
* lib/ostruct.rb: Improve documentation. Patch by Franklin Webber. * lib/ostruct.rb: Improve documentation. Patch by Franklin Webber.

View file

@ -1,7 +1,22 @@
## ##
# = mathn # = mathn
# #
# mathn is a library for changing the way Ruby does math. # mathn is a library for changing the way Ruby does math. If you need
# more precise rounding with multiple division or exponentiation
# operations, then mathn is the right tool. It makes sense to use this
# library if you can use it's late rounding. Mathn does not convert
# Fixnums into Floats as long as you do not convert it yourself.
# Instead of using Float as intermediate value it use Rational as
# value representation.
#
# Example Fixnum with intermediate Float:
#
# 20 / 9 * 3 * 14 / 7 * 3 / 2 # => 18
#
# Example: using mathn Fixnum/Rational:
#
# require 'mathn'
# 20 / 9 * 3 * 14 / 7 * 3 / 2 # => 20
# #
# == Usage # == Usage
# #
@ -13,13 +28,13 @@
# #
# 3 / 2 # 3 / 2
# #
# will return (3/2) instead of the usual 1. # will return +Rational+ (3/2) instead of the usual +Fixnum+ 1.
# #
# == Copyright # == Copyright
# #
# Author: Keiju ISHITSUKA(SHL Japan Inc.) # Author: Keiju ISHITSUKA(SHL Japan Inc.)
# #
# -- #--
# $Release Version: 0.5 $ # $Release Version: 0.5 $
# $Revision: 1.1.1.1.4.1 $ # $Revision: 1.1.1.1.4.1 $
@ -35,14 +50,29 @@ unless defined?(Math.exp!)
Math = CMath Math = CMath
end end
##
# When mathn is required Fixnum's division and exponentiation are enhanced to
# return more precise values in mathematical formulas.
#
# 2/3*3 # => 0
# require 'mathn'
# 2/3*3 # => 2
class Fixnum class Fixnum
remove_method :/ remove_method :/
##
# +/+ defines the Rational division for Fixnum.
#
# 1/3 # => (1/3)
alias / quo alias / quo
alias power! ** unless method_defined? :power! alias power! ** unless method_defined? :power!
## ##
# exponentiate by +other+ # Exponentiate by +other+
def ** (other) def ** (other)
if self < 0 && other.round != other if self < 0 && other.round != other
Complex(self, 0.0) ** other Complex(self, 0.0) ** other
@ -53,14 +83,25 @@ class Fixnum
end end
##
# When mathn is required Bignum's division and exponentiation are enhanced to
# return more precise values in mathematical formulas.
class Bignum class Bignum
remove_method :/ remove_method :/
##
# +/+ defines the Rational division for Bignum.
#
# (2**72) / ((2**70) * 3) # => 4/3
alias / quo alias / quo
alias power! ** unless method_defined? :power! alias power! ** unless method_defined? :power!
## ##
# exponentiate by +other+ # Exponentiate by +other+
def ** (other) def ** (other)
if self < 0 && other.round != other if self < 0 && other.round != other
Complex(self, 0.0) ** other Complex(self, 0.0) ** other
@ -71,11 +112,27 @@ class Bignum
end end
##
# When mathn is required Rational changes to simplfy the usage of Rational
# operations.
#
# Normal behaviour:
#
# Rational.new!(1,3) ** 2 # => Rational(1, 9)
# (1 / 3) ** 2 # => 0
#
# require 'mathn' behaviour:
#
# (1 / 3) ** 2 # => 1/9
class Rational class Rational
remove_method :** remove_method :**
## ##
# exponentiate by +other+ # Exponentiate by +other+
#
# (1/3) ** 2 # => 1/9
def ** (other) def ** (other)
if other.kind_of?(Rational) if other.kind_of?(Rational)
other2 = other other2 = other
@ -138,11 +195,32 @@ class Rational
end end
end end
##
# When mathn is requried the Math module changes as follows:
#
# Standard Math module behaviour:
# Math.sqrt(4/9) # => 0.0
# Math.sqrt(4.0/9.0) # => 0.666666666666667
# Math.sqrt(- 4/9) # => Errno::EDOM: Numerical argument out of domain - sqrt
#
# After require 'mathn' this is changed to:
#
# require 'mathn'
# Math.sqrt(4/9) # => 2/3
# Math.sqrt(4.0/9.0) # => 0.666666666666667
# Math.sqrt(- 4/9) # => Complex(0, 2/3)
module Math module Math
remove_method(:sqrt) remove_method(:sqrt)
## ##
# compute the square root of +a+ # Computes the square root of +a+. It makes use of Complex and
# Rational to have no rounding errors if possible.
#
# Math.sqrt(4/9) # => 2/3
# Math.sqrt(- 4/9) # => Complex(0, 2/3)
# Math.sqrt(4.0/9.0) # => 0.666666666666667
def sqrt(a) def sqrt(a)
if a.kind_of?(Complex) if a.kind_of?(Complex)
abs = sqrt(a.real*a.real + a.imag*a.imag) abs = sqrt(a.real*a.real + a.imag*a.imag)
@ -168,7 +246,11 @@ module Math
end end
end end
def rsqrt(a) # :nodoc: ##
# Compute square root of a non negative number. This method is
# internally used by +Math.sqrt+.
def rsqrt(a)
if a.kind_of?(Float) if a.kind_of?(Float)
sqrt!(a) sqrt!(a)
elsif a.kind_of?(Rational) elsif a.kind_of?(Rational)
@ -220,11 +302,15 @@ module Math
module_function :rsqrt module_function :rsqrt
end end
##
# When mathn is required Float is changed to handle Complex numbers.
class Float class Float
alias power! ** alias power! **
## ##
# exponentiate by +other+ # Exponentiate by +other+
def ** (other) def ** (other)
if self < 0 && other.round != other if self < 0 && other.round != other
Complex(self, 0.0) ** other Complex(self, 0.0) ** other