Im trying to implement a zero-lag butterworth Filtert as described in
tha paper at
http://www3.uta.edu/faculty/ricard/Grad%20Biomech/Pezzack/Robertson%20(2003)%20Design%20and%20responses%20of%20butt...
Hi,
I remember when I was at university in a lecture on PID controllers,
the lecturer mentioned a way that an autopilot can tell the aircraft
is on the ground, using nothing but a PID loop with v...
Hi,
I'm trying to implement the mean shift algorithm on page 18 of
http://hal.inria.fr/docs/00/17/10/38/PDF/RR-6282.pdf .
H is a diagonal matrix when you're using more then one dimension.
...
Hi,
sorry to post 2 questions in the same day but Ive been searching all
day and got nowhere.
Im trying to compute the log energy of an audio frame. I am aware that
the result of my calculatio...
hello,
I'm trying to construct a Gaussian Mixture model (GMM) from data with
n dimensions.
A multivariate Gaussian is described with:
b=(1/(((2*pi)^(D/2) * sqrt(det(sigma)))) * exp(-0.5*(x...
Hello,
I was reading this paper (http://www.kecl.ntt.co.jp/icl/signal/
nakatani/papers/icslp2002f0.pdf) and thought his Power spectra looks
ridiculously high.
using 10*log10(S) for the log pow...
Hi,
I'm trying to obtain the REPS for some audio data, but it's proving
quite difficult.
The link at
http://books.google.co.uk/books?id=7yJXMJUw03oC&pg=PA253&lpg=PA253&dq=reps+%22ripple+enhanc...
Hi,
I've made a Blcakman window in Matlab with the code:
windowWidth=256;
Window=(0:windowWidth)/windowWidth;
Window=0.42-0.5*cos(2*pi*adaWindow)+0.08*cos(4*pi*adaWindow);
This looks fine w...