Hello, I'm trying to put a new condition in the Gauss-Seidel method. In the case, A, q and x are three matrices, and w is the number of times the interaction is made:
def gauss(A, q, x, w):
L = np.tril(A)
U = A - L
for i in range(w...
asked by
02.04.2018 / 10:18