João Felipe Santos

Results 45 comments of João Felipe Santos

I understand and agree completely. I'll try to get the same code working both on MATLAB and Octave, and will submit a pull request if I get something decent.

In its simplest implementation, you will need to use an adaptive filter algorithm (e.g., LMS) to identify the system. [Here](http://thesai.org/Downloads/Volume2No3/Paper%2011-%20Adaptive%20Equalization%20Algorithms%20An%20Overview.pdf)'s an overview. I am interested in helping implement LMS, NLMS,...

Sure, I'm working on that already! There's one issue with using `vDSP` as opposed to `cblas` for complex matrices: `vDSP` does not support complex matrices, so we will have to...

There are just a few issues on Travis, I'm going to check them out soon.

@p-i- `LD_LIBRARY_PATH` does not work on OS X, try `DYLD_FALLBACK_LIBRARY_PATH` (see the answer [here](https://stackoverflow.com/questions/3146274/is-it-ok-to-use-dyld-library-path-on-mac-os-x-and-whats-the-dynamic-library-s) for more info). Regarding `readwav` and `writewav`, Python 3 strings are Unicode by default, and therefore...