1 | initial version |
The error message seems to be quite clear. The function bessel_K does not recognize ro2[i]
, which is an element of a numpy array. As a workaround, you can convert ro2[i]
to a Sage data type. For example, you can replace it by RR(ro2[i])
.