Type:
Module
Constants:
PI : DBL2NUM(M_PI)
E : DBL2NUM(M_E)

When mathn is required, the Math module changes as follows:

Standard Math module behaviour:

1
2
3
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:

1
2
3
4
require 'mathn'
Math.sqrt(4/9)      # => 2/3
Math.sqrt(4.0/9.0# => 0.666666666666667
Math.sqrt(- 4/9)    # => Complex(0, 2/3)

The Math module contains module functions for basic trigonometric and transcendental functions. See class Float for a list of constants that define Ruby's floating point accuracy.

atanh
  • References/Ruby on Rails/Ruby/Classes/Math

Math.atanh(x) â float Class Public methods Computes the inverse hyperbolic

2025-01-10 15:47:30
log10
  • References/Ruby on Rails/Ruby/Classes/Math

Math.log10(numeric) â float Class Public methods Returns the base 10 logarithm

2025-01-10 15:47:30
sinh
  • References/Ruby on Rails/Ruby/Classes/Math

Math.sinh(x) â float Class Public methods Computes the hyperbolic sine of

2025-01-10 15:47:30
cos
  • References/Ruby on Rails/Ruby/Classes/Math

Math.cos(x) â float Class Public methods Computes the cosine of x

2025-01-10 15:47:30
gamma
  • References/Ruby on Rails/Ruby/Classes/Math

Math.gamma(x) â float Class Public methods Calculates the gamma function of

2025-01-10 15:47:30
hypot
  • References/Ruby on Rails/Ruby/Classes/Math

Math.hypot(x, y) â float Class Public methods Returns sqrt(x**2 + y**2)

2025-01-10 15:47:30
cosh
  • References/Ruby on Rails/Ruby/Classes/Math

Math.cosh(x) â float Class Public methods Computes the hyperbolic cosine

2025-01-10 15:47:30