Jacobi Method 썸네일형 리스트형 야코비(Jacobi) Method C언어로 구현하기 /* Jacobi Method */ #include #include #include #include int it=0;double **a;double *b;double *s;#define EPS 1e-5 // 최대 오차#define ITOR 500 // 최대 반복 횟수 int n; // 행렬의 갯수 FILE *fp; double** matrix_malloc(int n){ double **a; int i,j; a=(double **)malloc(n*sizeof(double)); for(i=0;i 더보기 이전 1 다음