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
| """ | |
| tldr: | |
| Sampling at the Nyquist rate guarantees the potential for analog signal reconstruction. | |
| It does not guarantee exact representation as is. | |
| Reconstruction requires interpolation (of type sinc, sinus cardinalis, Whittaker–Shannon). | |
| """ | |
| import matplotlib.pyplot as plt | |
| from scipy import interpolate | |
| import numpy as np |