1

In Mathematica there is the Kelvin function KelvinBer[n,z]. I would need something equivalent in Python with n=0 and n=1.

There is scipy.special.ber(x), but as I understand it and played around, it comes with n=0. Is there an already defined KelvinBer with n=1 available?

I could implement it numerically but if someone knows a quicker way I would appreciate it very much.

UweD
  • 222
  • 4
  • 9

1 Answers1

1

Mpmath has a ber() function that takes an n argument.

enter image description here

Richard Inglis
  • 5,888
  • 2
  • 33
  • 37