Type:
Class

mathn

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.

Without mathn:

1
3 / 2 => 1 # Integer

With mathn:

1
3 / 2 => 3/2 # Rational

mathn features late rounding and lacks truncation of intermediate results:

Without mathn:

1
20 / 9 * 3 * 14 / 7 * 3 / 2 # => 18

With mathn:

1
20 / 9 * 3 * 14 / 7 * 3 / 2 # => 20

When you require 'mathn', the libraries for Prime, CMath, Matrix and Vector are also loaded.

Copyright

Author: Keiju ISHITSUKA (SHL Japan Inc.)

Document-class: FloatDomainError

Raised when attempting to convert special float values (in particular infinite or NaN) to numerical classes which don't support them.

1
Float::INFINITY.to_r

raises the exception:

1
FloatDomainError: Infinity
singleton_method_added
  • References/Ruby on Rails/Ruby/Classes/Numeric

singleton_method_added(p1) Instance Public methods Trap attempts to add methods

2025-01-10 15:47:30
nonzero?
  • References/Ruby on Rails/Ruby/Classes/Numeric

num.nonzero? â self or nil Instance Public methods Returns self

2025-01-10 15:47:30
floor
  • References/Ruby on Rails/Ruby/Classes/Numeric

num.floor â integer Instance Public methods Returns the largest integer less

2025-01-10 15:47:30
to_int
  • References/Ruby on Rails/Ruby/Classes/Numeric

num.to_int â integer Instance Public methods Invokes the child class's to_i

2025-01-10 15:47:30
<=>
  • References/Ruby on Rails/Ruby/Classes/Numeric

number other â 0 or nil Instance Public methods Returns zero if number

2025-01-10 15:47:30
-@
  • References/Ruby on Rails/Ruby/Classes/Numeric

-num â numeric Instance Public methods Unary MinusâReturns the receiver's

2025-01-10 15:47:30
truncate
  • References/Ruby on Rails/Ruby/Classes/Numeric

num.truncate â integer Instance Public methods Returns num truncated

2025-01-10 15:47:30
fdiv
  • References/Ruby on Rails/Ruby/Classes/Numeric

num.fdiv(numeric) â float Instance Public methods Returns float division

2025-01-10 15:47:30
phase
  • References/Ruby on Rails/Ruby/Classes/Numeric

num.phase â 0 or float Instance Public methods Returns 0 if the value is positive

2025-01-10 15:47:30
denominator
  • References/Ruby on Rails/Ruby/Classes/Numeric

num.denominator â integer Instance Public methods Returns the denominator

2025-01-10 15:47:30