Class: SPCore::HannWindow

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

Overview

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(size) ⇒ HannWindow

Returns a new instance of HannWindow.



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

def initialize size
  @data = Array.new(size)
  size.times do |n|
    @data[n] = 0.5 * (1 - 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/hann_window.rb', line 5

def data
  @data
end