我有以下代码:
p = classp();
for i in range(1,10):
x = numpy.array([[2],[4],[5]])
print p.update(x)
class classp:
def __init__(self):
self.mymodel = array([2*x[1]], [3*x[0]], [x[2]]);
def update(self, x):
return self.mymodel #replace x(0)...x(1) with the given parameter
我的问题与上面的代码有关,如果可能的话,我想使用 sympy 定义一个模型,然后在更新函数中用 x 值替换 sympy 变量。是否可以?我怎样才能做到这一点?