python-deltasigma
python-deltasigma copied to clipboard
A port of the MATLAB Delta Sigma Toolbox based on free software and very little sleep
Importing `deltasigma` produces the error: `AttributeError: module 'fractions' has no attribute 'gcd'` From: https://docs.python.org/3.5/library/fractions.html#fractions.gcd "Deprecated since version 3.5: Use math.gcd() instead."
deltasigma is working nicely for me on a Mac 10.9 setup, but not on 10.11 and not on Ubuntu. The problems are all to do with cblas. On Mac OS...
I very much liked @ggventurini's idea of creating a port of this library that works for an open language. My guess is that I would have probably collaborated with him,...
``` .... >>> ntf=synthesizeNTF(order=3, osr=32, opt=0) >>> plotPZ(ntf, markersize=5) .......\lib\site-packages\deltasigma\_plotPZ.py:85: MatplotlibDeprecationWarning: pyplot.hold is deprecated. Future behavior will be consistent with the long-time default: plot commands add elements without first clearing...
`PlotExampleSpectrum(ntf, M=1, osr=osr, f0=f0)` Traceback (most recent call last): File "", line 1, in PlotExampleSpectrum(ntf, M=1, osr=osr, f0=f0) File ".....\lib\site-packages\deltasigma\_PlotExampleSpectrum.py", line 103, in PlotExampleSpectrum plt.plot(freq, dbv(spec0[:N/2 + 1]), 'c', linewidth=1)...
Hi! I am working on a little project where I will need to run many simulations with `simulateDSM` and it would be very beneficial for me to minimise execution time....
Back in January I started using `python-deltasigma` with Python 3. I will probably continue to use it, but I don't have the ressources and time to test everyhing. **This is...
I install mingw-w64 with gcc version 9.1.0 (Rev3, Built by MSYS2 project) and mingw-openblas. Compile ok with this Makefile: ```mk OPENBLAS = openblas PYTHON_INC = C:\Python36\include PYTHON_LIB = C:\Python36\Libs NUMPY_INC...
File "....\lib\site-packages\deltasigma\_predictSNR.py", line 245, in powerGain if np.sum(abs(imp[Nimp - 11:Nimp])) < 1e-08 and Nimp > 50: TypeError: slice indices must be integers or None or have an __index__ method Nimp...