class DSP::Sig

Included Modules

Defined in:

dsp/signal/signal.cr

Constructors

Instance Method Summary

Constructor Detail

def self.new(data : Array(Float64), sample_rate : Float64) #

[View source]

Instance Method Detail

def *(other : Float64) #

[View source]
def *(other : Sig) #

[View source]
def *(other : Array(Float64)) #

[View source]
def +(other : Float64) #

[View source]
def +(other : Sig) #

[View source]
def +(other : Array(Float64)) #

[View source]
def -(other : Float64) #

[View source]
def -(other : Sig) #

[View source]
def -(other : Array(Float64)) #

[View source]
def /(other : Float64) #

[View source]
def /(other : Sig) #

[View source]
def /(other : Array(Float64)) #

[View source]
def ==(other) #
Description copied from class Reference

Returns false (other can only be a Value here).


[View source]
def abs #

Operate on copy of the Sig object with the absolute value function.


[View source]
def clone #

[View source]
def data : Array(Float64) #

[View source]
def duration #

Sig duration in seconds.


[View source]
def each(*args, **options) #

[View source]
def each(*args, **options, &) #

[View source]
def energy #

Calculate the energy in current signal data.


[View source]
def extrema #

[View source]
def frequency_domain #

[View source]
def max_magnitude #

[View source]
def normalize(max_magn = 1.0) #

adjust samples to maximum magnitude of 1


[View source]
def rms #

Calculate signal RMS (root-mean square), also known as quadratic mean, a statistical measure of the magnitude.


[View source]
def sample_rate : Float64 #

[View source]
def size(*args, **options) #

[View source]
def size(*args, **options, &) #

[View source]