如何用Python中的稀疏矩阵求解具有cholesky分解的线性系统?

时间:2018-06-16 20:01:37

标签: python linear-algebra theano

我有一个稀疏矩阵,我使用此行对Theano执行Cholesky分解:

theano.tensor.slinalg.Cholesky(lower=True) 

它说它有效并且显示了这个:

Cholesky{lower=<32x32 sparse matrix of type '<class 'numpy.float64'>'
    with 154 stored elements in Compressed Sparse Row format>, destructive=False, on_error='raise'}

我该如何解决系统并找到x?我试过了theano.tensor.slinalg.Solve,但它返回了这个:

Solve{A_structure='general', lower=False, overwrite_A=False, overwrite_b=False}

0 个答案:

没有答案