![]() |
How to use Scipy.special to retrieve complex Poles / Zeros of Bessel Polynominal - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: Data Science (https://python-forum.io/forum-44.html) +--- Thread: How to use Scipy.special to retrieve complex Poles / Zeros of Bessel Polynominal (/thread-23459.html) |
How to use Scipy.special to retrieve complex Poles / Zeros of Bessel Polynominal - Detzi - Dec-31-2019 Good Day, i am trying to calculate the Poles of a Bessel Polynomial as it is used in electronics. [1] after a bit of searching i found the scipy.special module [2] and its dedicated functions to calculate the zero of the bessel function. [3] Since i need the output to be a complex number in the form of where "j" is the imaginary number, i thought that special.y0_zeros(2,True)or special.y1_zeros(2,True)or special.y1p_zeros(2,True)should give me a number close to the ones listed in the Table that can be found under [4] but it doesn't. I tried to get the numbers for a second order Filter here and the output is (reformated): what i would have expected is: Also the Output for the same with a "1" instead of a "2" isn't just "1" which i also would have expected from the given table.Now i am no mathematician and i really have no clue about most of the terminology used so i am having a hard time figuring out if scipy can do what i need at all and if yes which function listed under [3] then is the right one to use and most importantly why ![]() Maybe someone here can hook me up, thanks in advance! RE: How to use Scipy.special to retrieve complex Poles / Zeros of Bessel Polynominal - Gribouillis - Dec-31-2019 I don't know this subject, but wouldn't scipy.signal.bessel be more adapted? It seems to give poles as a member of the structure. RE: How to use Scipy.special to retrieve complex Poles / Zeros of Bessel Polynominal - Detzi - Dec-31-2019 ![]() But still i really would like to understand the thing as a whole...like doing it from scratch. |