Class: Math::Expr::GeometricSequence
- Defined in:
- lib/ruuuby/math/expr/seq/geometric.rb
Overview
“each term is found by multiplying the previous term by a constant”
Instance Attribute Summary
Attributes inherited from Sequence
Instance Method Summary collapse
-
#initialize(max_cache_index, input_type) ⇒ GeometricSequence
constructor
A new instance of GeometricSequence.
Methods inherited from Sequence
#A∀ₓ, #[], #calc_val_at, #populate_cache, #∀ₓ, #∀ₓᵢ, #∋?
Constructor Details
#initialize(max_cache_index, input_type) ⇒ GeometricSequence
Returns a new instance of GeometricSequence.
11 12 13 |
# File 'lib/ruuuby/math/expr/seq/geometric.rb', line 11 def initialize(max_cache_index, input_type) super(max_cache_index, input_type) end |