Class: Numo::GSL::Wavelet::Daubechies

Inherits:
Numo::GSL::Wavelet show all
Defined in:
ext/numo/gsl/wavelet/gsl_wavelet.c

Class Method Summary collapse

Methods inherited from Numo::GSL::Wavelet

#name, #transform, #transform_forward, #transform_inverse

Class Method Details

.new(k) ⇒ Object

Generate an instance of Numo::GSL::Wavelet::Daubechies class, a subclass of Numo::GSL::Wavelet class with gsl_wavelet_daubechies type.

This function allocates and initializes a wavelet object of type T. The parameter k selects the specific member of the wavelet family. A null pointer is returned if insufficient memory is available or if a unsupported member is selected.

Parameters:

  • k (DFloat)


201
202
203
204
205
# File 'ext/numo/gsl/wavelet/gsl_wavelet.c', line 201

static VALUE
wavelet_daubechies_s_new(VALUE self, VALUE v1)
{
    return wavelet_s_new(self, gsl_wavelet_daubechies, v1);
}