class SPCore::BartlettWindow

Produces a triangular window of a given size (number of samples). Endpoints are zero. Midpoint is one. There is a linear slope between endpoints and midpoint.

Attributes

data[R]

Public Class Methods

new(size) click to toggle source
# File lib/spcore/windows/bartlett_window.rb, line 6
def initialize size
  @data = Array.new(size)
  size.times do |n|
    @data[n] = (2.0 / (size - 1)) * (((size - 1) / 2.0) - (n - ((size - 1) / 2.0)).abs)
  end
end