-
Notifications
You must be signed in to change notification settings - Fork 0
/
jacobiFUNCIONANDO.cpp
82 lines (63 loc) · 2.04 KB
/
jacobiFUNCIONANDO.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include <stdio.h>
#define MAX 10
void jacobi(int ordem, double matriz[][MAX], double vetorB[], double aproximacao[], double e, int maxIter, double solucao[], int* numIter) {
double x[MAX], temp[MAX];
int i, j, iter;
for (iter = 1; iter <= maxIter; iter++) {
double erro = 0.0;
for (i = 0; i < ordem; i++) {
temp[i] = vetorB[i];
for (j = 0; j < ordem; j++) {
if (i != j) {
temp[i] -= matriz[i][j] * aproximacao[j];
}
}
temp[i] /= matriz[i][i];
}
for (i = 0; i < ordem; i++) {
erro += (temp[i] - aproximacao[i]) * (temp[i] - aproximacao[i]);
}
for (i = 0; i < ordem; i++) {
aproximacao[i] = temp[i];
}
if (erro < e) {
break;
}
}
for (i = 0; i < ordem; i++) {
solucao[i] = aproximacao[i];
}
*numIter = iter;
}
int main() {
int ordem, maxIter, numIter;
double matriz[MAX][MAX], vetorB[MAX], aproximacao[MAX], solucao[MAX], e;
printf("Digite a ordem do sistema: ");
scanf("%d", &ordem);
printf("Digite a matriz dos coeficientes:\n");
for (int i = 0; i < ordem; i++) {
for (int j = 0; j < ordem; j++) {
scanf("%lf", &matriz[i][j]);
}
}
printf("Digite o vetor dos termos independentes:\n");
for (int i = 0; i < ordem; i++) {
scanf("%lf", &vetorB[i]);
}
printf("Digite a aproximacao inicial para a solucao:\n");
for (int i = 0; i < ordem; i++) {
scanf("%lf", &aproximacao[i]);
}
printf("Digite o valor de e (posicao desejada):\n");
scanf("%lf", &e);
printf("Digite o numero maximo de iteracoes: ");
scanf("%d", &maxIter);
jacobi(ordem, matriz, vetorB, aproximacao, e, maxIter, solucao, &numIter);
printf("O vetor solucao sera:\n");
for (int i = 0; i < ordem; i++) {
printf("%.4lf ", solucao[i]);
}
printf("\n");
printf("Número de iterações realizadas: %d\n", numIter);
return 0;
}