python icon indicating copy to clipboard operation
python copied to clipboard

python stuff

Results 7 python issues
Sort by recently updated
recently updated
newest added

can you tell me how i can install module gauss i cannot find a reference

Hi, These bindings are working well and I think the only sad thing is that the code is mixed up with other unrelated stuff. This PR is for splitting away...

TypeError: 'numpy.ndarray' object is not callable

Hi, when I run your _ssim.py_ example, I get the following error message: ``` /usr/bin/python2.7 /home//PycharmProjects/python-ssim/signal_processing/sp/ssim.py Traceback (most recent call last): File "/home//PycharmProjects/python-ssim/signal_processing/sp/ssim.py", line 110, in sys.exit(main()) File "/home//PycharmProjects/python-ssim/signal_processing/sp/ssim.py", line...

nice library testing resample with short inputs and checking sample alignment, the output is shifted by one sample. one fix is: offset = numpy.floor((l+nz_pre)/q) - 1

I found that in your implementation of `interp` (in the multirate module), if you use `filtfilt` instead of `lfilter`, and don't cut off the results (ie. with `[r*l+1:-1]`) the result...