continued_fractions 2.0.3 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -6
  3. data/lib/continued_fractions.rb +24 -9
  4. metadata +8 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ffe169ac2c266d57c725c7991888a41efbb5bc8696bc6e08690fb71da0bf3d45
4
- data.tar.gz: 45cece67fcee46aaf95dcd55f6f84a5883d165e1b595a6a09e4a8ee352da492c
3
+ metadata.gz: 70ae08b9c2e0316d4ae354f4f795645b8a307c21dd57e5f3b704f10f804f00a9
4
+ data.tar.gz: 83e3fcf0dd8145a20769a80d7ac926b66638e0af58818fb9da7566dd70bcdf4c
5
5
  SHA512:
6
- metadata.gz: e96bd62ad78689b3232bc0d5f56de48227ddfcaaea7d09773bcd54625919e1ccffc8586bfda2cc1aa93c0eaa6f5e1dedf486233cc42981b89a5459c4c2264560
7
- data.tar.gz: 23bc9894cef7befca7e73b7b78e08eb1ca6cf71f382e8706de8fa571dee9f06dfd657b1b8b68ffd74651779ccc30c0a1d412906f0d491c0a1dfef237e0028074
6
+ metadata.gz: fe5ebdeef2e9d2716f3ab5e3475e7466fcf081df57966dd62b7e8f71b222a310e446ab1489bb61cb787abe2d2aa9c1ba96cedbe79665947537c32fa7e313168a
7
+ data.tar.gz: c4e278d554c1ea4575bec6199ab483456ee1f39047e41aa7b48cd0d14836a87c9d8bcece9383e0fd267845de80715322b225ccc0b9ae368f0ca1e21459ba0139
data/README.md CHANGED
@@ -1,6 +1,5 @@
1
1
  # ContinuedFractions
2
-
3
- * http://rubygems.org/gems/continued_fractions
2
+ [![Gem Version](https://badge.fury.io/rb/continued_fractions.svg)](https://badge.fury.io/rb/continued_fractions)
4
3
 
5
4
  ## Description
6
5
 
@@ -18,16 +17,15 @@ Generates quotients and convergents for a given number.
18
17
 
19
18
  cf.convergents
20
19
  => [(3/1), (22/7), (333/106), (355/113), (103993/33102), (104348/33215), (208341/66317), (312689/99532), (833719/265381), (1146408/364913)]
21
-
22
- cf.convergent(1)
23
- => (22/7)
24
20
 
25
21
  cf.quotients
26
22
  => [3, 7, 15, 1, 292, 1, 1, 1, 2, 1]
27
23
 
28
24
  # Add, subtract, multiply and divide continued fractions. The limit of the result is the max limit of the operands.
25
+
29
26
  cf2 = ContinuedFraction.new(rand,20)
30
27
  => 0.9465929215086878, quotients: [0, 1, 17, 1, 2, 1, 1, 1, 1, 1, 41, 1, 1, 2, 22, 1, 1, 11, 1, 3], convergents: [(0/1), (1/1), (17/18), (18/19), (53/56), (71/75), (124/131), (195/206), (319/337), (514/543), (21393/22600), (21907/23143), (43300/45743), (108507/114629), (2430454/2567581), (2538961/2682210), (4969415/5249791), (57202526/60429911), (62171941/65679702), (243718349/257469017)]
28
+
31
29
  cf + cf2
32
30
  => 4.088185575098481, quotients: [4, 11, 2, 1, 16, 1, 2, 1, 1, 1, 1, 25, 7, 1, 3, 1, 3], convergents: [(4/1), (45/11), (94/23), (139/34), (2318/567), (2457/601), (7232/1769), (9689/2370), (16921/4139), (26610/6509), (43531/10648), (1114885/272709), (7847726/1919611), (8962611/2192320), (34735559/8496571), (43698170/10688891), (165830069/40563244)]
33
31
 
@@ -47,4 +45,4 @@ sudo gem install continued_fractions
47
45
 
48
46
  ## Contributors
49
47
 
50
- * [Jose Hales-Garcia](https://github.com/jolohaga)
48
+ * [Jose Hales-Garcia](https://github.com/jolohaga)
@@ -6,15 +6,6 @@ require 'continued_fractions/include'
6
6
  #
7
7
  # @author Jose Hales-Garcia
8
8
  #
9
- # @attr_reader number [Numeric]
10
- # The number who's continued fraction is being calculated
11
- # @attr_reader quotients [Array]
12
- # The array of quotients of the continued fraction
13
- # @attr_reader convergents [Array]
14
- # The convergents of the continued fraction
15
- # @attr_reader limit [Integer]
16
- # The limit to calculate. Practical for real numbers, although they're limited by the system.
17
- #
18
9
  class ContinuedFraction
19
10
  include Comparable
20
11
 
@@ -71,6 +62,30 @@ class ContinuedFraction
71
62
  end
72
63
  end
73
64
 
65
+ # @return [ContinuedFraction] the result from the provided array of quotients
66
+ # @example
67
+ # ContinuedFraction.from_quotients(2, 1, 2, 1, 1, 4, 1, 1, 6, 1, 1, 8, 1, 1, 10)
68
+ # => 2.7182818284454013, quotients: [2, 1, 2, 1, 1, 4, 1, 1, 6, 1, 1, 8, 1, 1, 9], convergents: [(2/1), (3/1), (8/3), (11/4), (19/7), (87/32), (106/39), (193/71), (1264/465), (1457/536), (2721/1001), (23225/8544), (25946/9545), (49171/18089), (468485/172346)]
69
+ # @param quotients [Array] or comma separated list of quotients
70
+ #
71
+ def self.from_quotients(*quotients)
72
+ quotients = quotients.flatten
73
+ return quotients.first if quotients.size == 1
74
+
75
+ p_minus_2, p_minus_1 = 0, 1
76
+ q_minus_2, q_minus_1 = 1, 0
77
+
78
+ quotients.each do |quotient|
79
+ p = quotient * p_minus_1 + p_minus_2
80
+ q = quotient * q_minus_1 + q_minus_2
81
+
82
+ p_minus_2, p_minus_1 = p_minus_1, p
83
+ q_minus_2, q_minus_1 = q_minus_1, q
84
+ end
85
+
86
+ ContinuedFraction.new((p_minus_1.to_r / q_minus_1).to_f, quotients.length)
87
+ end
88
+
74
89
  def <=>(other)
75
90
  number <=> other.number
76
91
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: continued_fractions
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jose Hales-Garcia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-06 00:00:00.000000000 Z
11
+ date: 2024-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '3.2'
19
+ version: '3'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '3.2'
26
+ version: '3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: byebug
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -62,11 +62,12 @@ files:
62
62
  - README.md
63
63
  - lib/continued_fractions.rb
64
64
  - lib/continued_fractions/include.rb
65
- homepage: https://jolohaga.github.io/continued_fractions
65
+ homepage: https://jolohaga.github.io/continued_fractions/
66
66
  licenses:
67
67
  - MIT
68
68
  metadata:
69
- source_code_uri: https://github.com/jolohaga/continued_fractions
69
+ source_code_uri: https://github.com/jolohaga/continued_fractions/
70
+ documentation_uri: https://jolohaga.github.io/continued_fractions/
70
71
  post_install_message:
71
72
  rdoc_options: []
72
73
  require_paths:
@@ -82,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
83
  - !ruby/object:Gem::Version
83
84
  version: '3.1'
84
85
  requirements: []
85
- rubygems_version: 3.4.22
86
+ rubygems_version: 3.5.22
86
87
  signing_key:
87
88
  specification_version: 4
88
89
  summary: Generate continued fractions