cokelaer / spectrum

Spectral Analysis in Python
http://pyspectrum.readthedocs.io
BSD 3-Clause "New" or "Revised" License
339 stars 90 forks source link

Bugfix in corrmtx docs #58

Closed maxstrobel closed 4 years ago

maxstrobel commented 5 years ago

The rectangular matrix in the middle of the Toeplitz matrix seems to be buggy.

We can show this with a simple example, e.g. N=6, p=1: x[N-p] = x[6-1] = x[5] != x[p+1] = x[1+1] = x[1]