本文整理汇总了Python中sympy.Matrix.integrate方法的典型用法代码示例。如果您正苦于以下问题:Python Matrix.integrate方法的具体用法?Python Matrix.integrate怎么用?Python Matrix.integrate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sympy.Matrix
的用法示例。
在下文中一共展示了Matrix.integrate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_issue650
# 需要导入模块: from sympy import Matrix [as 别名]
# 或者: from sympy.Matrix import integrate [as 别名]
def test_issue650():
x, y = symbols('x','y')
a = Matrix([[x**2, x*y],[x*sin(y), x*cos(y)]])
assert a.diff(x) == Matrix([[2*x, y],[sin(y), cos(y)]])
assert Matrix([[x, -x, x**2],[exp(x),1/x-exp(-x), x+1/x]]).limit(x, oo) == Matrix([[oo, -oo, oo],[oo, 0, oo]])
assert Matrix([[(exp(x)-1)/x, 2*x + y*x, x**x ],
[1/x, abs(x) , abs(sin(x+1))]]).limit(x, 0) == Matrix([[1, 0, 1],[oo, 0, sin(1)]])
assert a.integrate(x) == Matrix([[Rational(1,3)*x**3, y*x**2/2],[x**2*sin(y)/2, x**2*cos(y)/2]])
示例2: test_integrate
# 需要导入模块: from sympy import Matrix [as 别名]
# 或者: from sympy.Matrix import integrate [as 别名]
def test_integrate():
x, y = symbols('x,y')
A = Matrix(((1,4,x),(y,2,4),(10,5,x**2)))
assert A.integrate(x) == Matrix(((x, 4*x, x**2/2), (x*y, 2*x, 4*x), (10*x, 5*x, x**3/3)))
assert A.integrate(y) == Matrix(((y, 4*y, x*y),(y**2/2, 2*y, 4*y), (10*y, 5*y, y*x**2)))