我的代码是:
from sympy.solvers import nsolve
from sympy import Symbol
def solver(I):
return nsolve(x-3*(1-2.73**-x), I, verify=False)
i_min=-51
i_max=100
z=0
x = Symbol('x')
for i in range(i_min,i_max):
y=z
z=solver(i)
if y!=z: continue
print(z)
当我运行这个程序时,它按预期工作。不过,如果我将
i_min
改为-52
,它就不起作用,我得到:unbundlocalerror:赋值前引用了局部变量“x”
通过梳理关于这个错误的其他答案,我发现大多数建议使用全局变量。但到目前为止,我尝试过的任何全局变量声明都没有成功。
任何帮助都非常感谢。
编辑:以下是整个日志:
UnboundLocalError Traceback (most recent call
last)
<ipython-input-3-1dfdd15c7bf8> in <module>()
11 for i in range(i_min,i_max):
12 y=z
---> 13 z=solver(i,x)
14 if y!=z: continue
15 print(z)
<ipython-input-3-1dfdd15c7bf8> in solver(I, x)
3
4 def solver(I,x='x'):
----> 5 return nsolve(x-3*(1-2.73**-x), I, verify=False)
6
7 i_min=-55
/home/... in nsolve(*args, **kwargs)
2752
2753 f = lambdify(fargs, f, modules)
-> 2754 return findroot(f, x0, **kwargs)
2755
2756 if len(fargs) > f.cols:
/home... in findroot(ctx, f, x0, solver, tol, verbose, verify,
**kwargs)
965 if error < tol * max(1, norm(x)) or i >= maxsteps:
966 break
--> 967 if not isinstance(x, (list, tuple, ctx.matrix)):
968 xl = [x]
969 else:
UnboundLocalError: local variable 'x' referenced before assignment
最佳答案
只需将x
作为solver
传递到parameter
函数中。这样你就不用依赖global
variables
。
执行此操作的code
可能类似于:
from sympy.solvers import nsolve
from sympy import Symbol
def solver(I, x):
return nsolve(x-3*(1-2.73**-x), I, verify=False)
i_min=-51
i_max=100
z=0
x = Symbol('x')
for i in range(i_min,i_max):
y=z
z=solver(i, x)
if y!=z: continue
print(z)
关于python - 将间隔加一时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46872398/