Skip to content

Instantly share code, notes, and snippets.

View mrcampbell's full-sized avatar

Mike Campbell mrcampbell

  • Divvy
  • Northern Utah
View GitHub Profile
<article class="speakerslist">
<div class="container">
<div class="row">
<div class="col-sm-8">
<h3 class="speakerslist-title">title</h3>
<h5 class="speakerslist-name">with <a href="/speakers/shortname">name</a></h5>
<p class="speakerslist-info"><a href="/speakers/shortname">
<img class="speakerslist-img img-circle pull-left" src="/images/speakers/shortname_tn.jpg" alt="Photo of name"></a>
summary
</a></p>
@mrcampbell
mrcampbell / frequency_estimator.py
Last active July 9, 2024 10:00 — forked from endolith/frequency_estimator.py
Frequency estimation methods in Python
from __future__ import division
from scikits.audiolab import flacread
from numpy.fft import rfft, irfft
from numpy import argmax, sqrt, mean, diff, log
from matplotlib.mlab import find
from scipy.signal import blackmanharris, fftconvolve
from time import time
import sys
from parabolic import parabolic