#python #function #solver
#питон #функция #решатель
Вопрос:
Я пытаюсь решить проблемы, связанные с функциями Бесселя и их множественными корнями. Я не могу использовать chebfun для их решения :
import scipy.special as sp from chebpy import chebfun x = chebfun('x', [0, 10]) f = sp.jv(0,x) rts = f.roots() print (rts)
Возвращает следующую ошибку :
TypeError: ufunc 'jv' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''
У кого-нибудь есть идея ?