本文介绍了如何在 sympy 中创建索引变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
x,i,n = 符号("x i n")求和(x,(i,1,n))
如何让 x
被 i
索引?
解决方案
如果没有数值上限,它什么也做不了,否则你可以使用类似函数的表达式或索引变量:
>>>Sum(Indexed('x',i),(i,1,3))总和(x[i], (i, 1, 3))>>>_.doit()x[1] + x[2] + x[3]>>>x = Function('x')>>>Sum(x(i),(i,1,3)).doit()x(1) + x(2) + x(3)>>>Sum(x(i),(i,1,n)).doit()Sum(x(i), (i, 1, n))x,i,n = symbols("x i n")
summation(x,(i,1,n))
How do I make x
indexed by i
?
解决方案
Without a numerical upper limit, it won't do anything, but otherwise you can use a function-like expression or an indexed variable:
>>> Sum(Indexed('x',i),(i,1,3))
Sum(x[i], (i, 1, 3))
>>> _.doit()
x[1] + x[2] + x[3]
>>> x = Function('x')
>>> Sum(x(i),(i,1,3)).doit()
x(1) + x(2) + x(3)
>>> Sum(x(i),(i,1,n)).doit()
Sum(x(i), (i, 1, n))
这篇关于如何在 sympy 中创建索引变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!