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

* lib/cmath.rb: Add some examples and improve documentation. Patch by

Sandor Szücs.  [Ruby 1.9 - Bug #4727]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31621 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2011-05-17 21:09:39 +00:00
parent 0d014df637
commit 3cb36fadf2
2 changed files with 40 additions and 12 deletions

View file

@ -1,3 +1,8 @@
Wed May 18 06:09:24 2011 Eric Hodel <drbrain@segment7.net>
* lib/cmath.rb: Add some examples and improve documentation. Patch by
Sandor Szücs. [Ruby 1.9 - Bug #4727]
Wed May 18 05:40:31 2011 Eric Hodel <drbrain@segment7.net>
* lib/benchmark.rb: Remove nodoc from Benchmark::Job and

View file

@ -1,5 +1,19 @@
##
# Math functions for Complex numbers
# = CMath
#
# CMath is a library that provides trigonometric and transcendental
# functions for complex numbers.
#
# == Usage
#
# To start using this library, simply:
#
# require "cmath"
#
# Square root of a negative number is a complex number.
#
# CMath.sqrt(-9) #=> 0+3.0i
#
module CMath
@ -30,7 +44,11 @@ module CMath
alias atanh! atanh
##
# returns the value of e raised to the +z+ power
# Math::E raised to the +z+ power
#
# exp(Complex(0,0)) #=> 1.0+0.0i
# exp(Complex(0,PI)) #=> -1.0+1.2246467991473532e-16i
# exp(Complex(0,PI/2.0)) #=> 6.123233995736766e-17+1.0i
def exp(z)
if z.real?
exp!(z)
@ -42,8 +60,10 @@ module CMath
end
##
# returns the log of the first argument with the base
# optionally specified as the second argument
# Returns the natural logarithm of Complex. If a second argument is given,
# it will be the base of logarithm.
#
# log(Complex(0,0)) #=> -Infinity+0.0i
def log(*args)
z, b = args
if z.real? and z >= 0 and (b.nil? or b >= 0)
@ -58,7 +78,7 @@ module CMath
end
##
# returns the log base 2 of +z+
# returns the base 2 logarithm of +z+
def log2(z)
if z.real? and z >= 0
log2!(z)
@ -68,7 +88,7 @@ module CMath
end
##
# returns the log base 10 of +z+
# returns the base 10 logarithm of +z+
def log10(z)
if z.real? and z >= 0
log10!(z)
@ -78,7 +98,10 @@ module CMath
end
##
# returns the square root of +z+
# Returns the non-negative square root of Complex.
# sqrt(-1) #=> 0+1.0i
# sqrt(Complex(-1,0)) #=> 0.0+1.0i
# sqrt(Complex(0,8)) #=> 2.0+2.0i
def sqrt(z)
if z.real?
if z < 0
@ -141,7 +164,7 @@ module CMath
end
##
# returns the hyperbolic sine of +z+
# returns the hyperbolic sine of +z+, where +z+ is given in radians
def sinh(z)
if z.real?
sinh!(z)
@ -152,7 +175,7 @@ module CMath
end
##
# returns the hyperbolic cosine of +z+
# returns the hyperbolic cosine of +z+, where +z+ is given in radians
def cosh(z)
if z.real?
cosh!(z)
@ -163,7 +186,7 @@ module CMath
end
##
# returns the hyperbolic tangent of +z+
# returns the hyperbolic tangent of +z+, where +z+ is given in radians
def tanh(z)
if z.real?
tanh!(z)
@ -203,8 +226,8 @@ module CMath
end
##
# returns the arc tangent of +y+ / +x+ using the signs
# of +y+ and +x+ to determine the quadrant
# returns the arc tangent of +y+ divided by +x+ using the signs of +y+ and
# +x+ to determine the quadrant
def atan2(y,x)
if y.real? and x.real?
atan2!(y,x)