本文整理汇总了Python中immutable.ImmutableMatrix._sympify方法的典型用法代码示例。如果您正苦于以下问题:Python ImmutableMatrix._sympify方法的具体用法?Python ImmutableMatrix._sympify怎么用?Python ImmutableMatrix._sympify使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类immutable.ImmutableMatrix
的用法示例。
在下文中一共展示了ImmutableMatrix._sympify方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: zeros
# 需要导入模块: from immutable import ImmutableMatrix [as 别名]
# 或者: from immutable.ImmutableMatrix import _sympify [as 别名]
def zeros(cls, r, c=None):
"""Return an r x c matrix of zeros, square if c is omitted."""
if is_sequence(r):
SymPyDeprecationWarning(
feature="The syntax zeros([%i, %i])" % tuple(r),
useinstead="zeros(%i, %i)." % tuple(r),
issue=3381, deprecated_since_version="0.7.2",
).warn()
r, c = r
else:
c = r if c is None else c
r = as_int(r)
c = as_int(c)
return cls._new(r, c, [cls._sympify(0)]*r*c)
示例2: eye
# 需要导入模块: from immutable import ImmutableMatrix [as 别名]
# 或者: from immutable.ImmutableMatrix import _sympify [as 别名]
def eye(cls, n):
"""Return an n x n identity matrix."""
n = as_int(n)
mat = [cls._sympify(0)]*n*n
mat[::n + 1] = [cls._sympify(1)]*n
return cls._new(n, n, mat)