This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Plot white noise with added sinusoidal signal | |
""" | |
import numpy as np | |
import matplotlib.pyplot as plt | |
import sys | |
import h5py | |
fs = 4096 # sampling rate [Hz] | |
T = 4 # duration [s] |