class DSP::Scale

Overview

Provide methods for generating sequences that scale linearly or exponentially.

Defined in:

dsp/scale.cr

Class Method Summary

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.


[View source]
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.


[View source]