Class: SPCore::BartlettHannWindow

Inherits:
Object
  • Object
show all
Defined in:
lib/spcore/windows/bartlett_hann_window.rb

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(size) ⇒ BartlettHannWindow

Returns a new instance of BartlettHannWindow.



6
7
8
9
10
11
12
13
# File 'lib/spcore/windows/bartlett_hann_window.rb', line 6

def initialize size
  @data = Array.new(size)
  a0, a1, a2 = 0.62, 0.48, 0.38
  
  size.times do |n|
    @data[n] = a0 - (a1 * ((n.to_f / (size - 1)) - 0.5).abs) - (a2 * Math::cos((TWO_PI * n)/(size - 1)))
  end
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



5
6
7
# File 'lib/spcore/windows/bartlett_hann_window.rb', line 5

def data
  @data
end