Python解线性方程组的迭代法(4)————共轭梯度法

代码:

import numpy as np


def grad(A, b, error):
    n1 = A.shape[0]
    d = np.mat(np.zeros((n1, 1<

你可能感兴趣的:(计算方法,数值分析,python,numpy)