x = symbols('x')
ch = 'exp(cos(cos(exp((sin(-0.06792841536110628))**(-6.045461643745118)))))'
f = lambdify(x, ch, "numpy")
print(float(f(2)))
It does not work, the programm is running and never ends(no error is issued). My goal is to avoid this kind of cases (among multiple cases) by doing a try/except but i can't as there is no error Why no error is released? How can i avoid these cases ?
Thanks for your helping me !
In general, I'm not sure you can. SymPy or NumPy will keep trying to compute the number until precision is exhausted. But you can create a function that will raise and error if numbers are out of bounds for your interest:
But you have to think carefully about when you want to raise such an error. For example, SymPy has no trouble computing
f(100)
orf(100*I)
if the non-error-catchingcos
is used. So think about when actually you want the error to rise.