- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前正在尝试从下面“泊松刚度”中的 scipy.sparse.diags 函数形成的对角矩阵中点积一行,但我在选择行时遇到问题并收到以下错误:
TypeError: 'dia_matrix' object has no attribute '__getitem__'
下面是我的代码
def Poisson_Stiffness(x0):
"""Finds the Poisson equation stiffness matrix with any non uniform mesh x0"""
x0 = np.array(x0)
N = len(x0) - 1 # The amount of elements; x0, x1, ..., xN
h = x0[1:] - x0[:-1]
a = np.zeros(N+1)
a[0] = 1 #BOUNDARY CONDITIONS
a[1:-1] = 1/h[1:] + 1/h[:-1]
a[-1] = 1/h[-1]
a[N] = 1 #BOUNDARY CONDITIONS
b = -1/h
b[0] = 0 #BOUNDARY CONDITIONS
c = -1/h
c[N-1] = 0 #BOUNDARY CONDITIONS: DIRICHLET
data = [a.tolist(), b.tolist(), c.tolist()]
Positions = [0, 1, -1]
Stiffness_Matrix = diags(data, Positions, (N+1,N+1))
return Stiffness_Matrix
def Error_Indicators(Uh,U_mesh,Z,Z_mesh,f):
"""Take in U, Interpolate to same mesh as Z then solve for eta"""
u_inter = interp1d(U_mesh,Uh) #Interpolation of old mesh
U2 = u_inter(Z_mesh) #New function u for the new mesh to use in
Bz = Poisson_Stiffness(Z_mesh)
eta = np.empty(len(Z_mesh))
for i in range(len(Z_mesh)):
eta[i] = (f[i] - np.dot(Bz[i,:],U2[:]))*z[i]
return eta
错误具体来自以下代码行:
eta[i] = (f[i] - np.dot(Bz[i,:],U2[:]))*z[i]
导致错误的是 Bz 矩阵,它是使用 scipy.sparse.diags 创建的,不允许我调用该行。
Bz = Poisson_Stiffness(np.linspace(0,1,40))
print Bz[0,0]
这段代码也会产生同样的错误。
非常感谢任何帮助谢谢
最佳答案
sparse.dia_matrix
显然不支持索引。解决方法是将其转换为另一种格式。出于计算目的,tocsr()
是合适的。
dia_matrix
的文档是有限的,但我认为代码是可见的 Python。我必须仔细检查,但我认为它是一个矩阵构造工具,而不是一个完全开发的工作格式。
In [97]: M=sparse.dia_matrix(np.ones((3,4)),[0,-1,2])
In [98]: M[1,:]
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-98-a74bcb661a8d> in <module>()
----> 1 M[1,:]
TypeError: 'dia_matrix' object is not subscriptable
In [99]: M.tocsr()[1,:]
Out[99]:
<1x4 sparse matrix of type '<class 'numpy.float64'>'
with 4 stored elements in Compressed Sparse Row format>
dia_matrix
将其信息存储在 .data
和 .offsets
属性中,这些属性是输入参数的简单修改。它们不适用于二维索引。
关于python - 类型错误 : 'dia_matrix' object has no attribute '__getitem__' - Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32382558/
运行这段代码 d0 = np.ones(N) dp1 = np.ones(N - 1) dm1 = np.ones(N - 1) diag = [[d0],[dp1],[dm1]] offsets
在 scipy 程序中,我正在创建一个具有 5 条对角线的 dia_matrix(稀疏矩阵类型)。中心对角线 +1 & -1 对角线和 +4 & -4 对角线(通常 >> 4,但原理是相同的),即我有
我目前正在尝试从下面“泊松刚度”中的 scipy.sparse.diags 函数形成的对角矩阵中点积一行,但我在选择行时遇到问题并收到以下错误: TypeError: 'dia_matrix' obj
我是一名优秀的程序员,十分优秀!