-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMatriz.cpp
60 lines (60 loc) · 1.28 KB
/
Matriz.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
// Matriz.cpp: archivo de proyecto principal.
#include"stdafx.h"
#include <iostream>
using namespace std;
int i, j, k, s;
float m1[1000][1000], coef, aux[1000], elemento;
int main()
{
cout << "Bienvenido al Generador de Matrices Inversas" << endl;
cout << "Por favor introduzca el tamaño de la matriz" << endl;
cout << "-------------------------------------------" << endl;
cout << "n= ";
/* Vamos a introducir la matriz por teclado*/
cin >> k;
for (i = 0; i<k; i++)
{
for (j = 0; j<k; j++)
{
cout << "Ingrese el valor de ? " "[" << i << "]""[" << j << "]";
cin >> m1[i][j];
}
}
for (i = 0; i<k; i++)
for (j = k; j<2 * k; j++)
{
if (i == (j - k))
m1[i][j] = 1;
else
m1[i][j] = 0;
}
//Iteraciones
for (s = 0; s<k; s++)
{
elemento = m1[s][s];
for (j = 0; j<2 * k; j++)
m1[s][j] = m1[s][j] / elemento;
for (i = 0; i<k; i++)
{
if (i == s)
;
else
{
coef = m1[i][s];
for (j = 0; j<2 * k; j++)
aux[j] = m1[s][j] * (coef*-1);
for (j = 0; j<2 * k; j++)
m1[i][j] = m1[i][j] + aux[j];
}
}
}
//Imprimir la matriz inversa
for (i = 0; i<k; i++)
{
for (j = k; j<2 * k; j++)
cout << "t= " << m1[i][j] << endl;
if (j == k)
cout << "n= ";
}
system("pause");
}