class DSP::Scale
- DSP::Scale
- Reference
- Object
Overview
Provide methods for generating sequences that scale linearly or exponentially.
Defined in:
dsp/scale.crClass Method Summary
-
.exponential(range, n_points)
@param [Range] range The start and end values the set should include.
-
.linear(range, n_points)
Produce a sequence of values that progresses in a linear fashion.
Class Method Detail
def self.exponential(range, n_points)
#
@param [Range] range The start and end values the set should include. @param [Fixnum] n_points The number of points to create for the sequence, including the start and end points. @raise [ArgumentError] if n_points is < 2.
def self.linear(range, n_points)
#
Produce a sequence of values that progresses in a linear fashion. @param [Range] range The start and end values the set should include. @param [Fixnum] n_points The number of points to create for the sequence, including the start and end points. @raise [ArgumentError] if n_points is < 2.