Python解线性方程组的迭代法(3)————逐次超松弛(SOR)迭代法

代码

import numpy as np


def sor(A, b, N, w):
    x = np.mat(np.zeros((A.shape[0], 1

你可能感兴趣的:(python,numpy)