Sha256: 405495f19ff6e8dcfb310c8fa181a6bfd285bb395fbe221fc5b2d6d6f75936b0
Contents?: true
Size: 979 Bytes
Versions: 5
Compression:
Stored size: 979 Bytes
Contents
module Dydx class Integrand attr_accessor :function, :var def initialize(function, var) @function = function @var = var end def [](a, b, n = 1000) # HOT FIX: should implement Infinity class a = - 1000 if a == - Float::INFINITY b = 1000 if b == Float::INFINITY a, b = [a, b].map(&:to_f) fail ArgumentError, 'b should be greater than a' if a > b $temp_cal_f = function n = [n, (b - a) * 2].max n += 1 if n.to_i.odd? h = (b - a) / n x = ->(i) { a + h * i } odd_sum = (1..n - 1).to_a.select(&:odd?).inject(0) { |sum, i| sum += f(x.(i)) } even_sum = (1..n - 1).to_a.select(&:even?).inject(0) { |sum, i| sum += f(x.(i)) } round_8( (h / 3) * (f(a) + f(b) + 2 * even_sum + 4 * odd_sum) ) end def f(vars) temp_cal_f(vars) end def round_8(num) return num if num.abs == Float::INFINITY (num * 10 ** 8).round * 10.0 ** (-8) end end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
dydx-0.2.7000001 | lib/dydx/integrand.rb |
dydx-0.2.7000000 | lib/dydx/integrand.rb |
dydx-0.1.41421 | lib/dydx/integrand.rb |
dydx-0.1.412 | lib/dydx/integrand.rb |
dydx-0.1.4 | lib/dydx/integrand.rb |