Skip to content

Instantly share code, notes, and snippets.

@RodrigoPrior
RodrigoPrior / haar_mother_wavelet.py
Created November 5, 2017 16:21
Example of Haar Mother Wavelet in python using np.piecewise interval definition.
"""
Haar Mother Wavelet.
Example of Haar Mother Wavelet in python using np.piecewise interval definition.
"""
# Ref.:
# https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.piecewise.html
# https://sfalsharif.wordpress.com/2009/12/18/piecwise-function-definitions-in-numpy/
import numpy as np
import matplotlib.pyplot as plt