塞德尔专题

高斯-塞德尔迭代法Gauss-Seidel_解线性方程组的迭代法

高斯-塞德尔迭代法Gauss-Seidel_解线性方程组的迭代法 标签:计算方法实验 #include <stdio.h>#include <math.h>#define maxn 3int main(){double a[maxn][maxn + 1], x[maxn] = {0};double eps = 1e-9;int n, k, kmax = 100;freopen("gauss