-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (66 loc) · 2.99 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Document</title>
</head>
<body>
<h2>Operaciones con Matrices</h2>
<div class="main">
<div class="input-1">
<h3>Datos de matriz 1</h3>
<form id="formulario-1">
<label for="filas">Filas: </label>
<input type="text" id="filas1" name="filas"><br><br>
<label for="columnas">Columnas: </label>
<input type="text" id="columnas1" name="columnas"><br><br>
<label for="matriz">Matriz: </label> 1 2 3 4 (con dos filas y dos columnas) crea la matriz [[1,2],[3,4]].
<input type="text" id="matriz1" name="matriz"><br><br>
<input type="submit" value="Enviar" >
</form>
</div>
<div class="input-1">
<h3>Datos de matriz 2</h3>
<form id="formulario-2">
<label for="filas">Filas: </label>
<input type="text" id="filas2" name="filas"><br><br>
<label for="filas">Columnas: </label>
<input type="text" id="columnas2" name="columnas"><br><br>
<label for="matriz">Matriz: </label> 1 2 3 4 (con dos filas y dos columnas) crea la matriz [[1,2],[3,4]].
<input type="text" id="matriz2" name="matriz"><br><br>
<input type="submit" value="Enviar" >
</form>
</div>
<div class="resultados">
<div class="matriz-input">
<div class="res-1">
<h3>Matriz 1</h3>
<div id="output1"></div>
</div>
<div class="res2">
<h3>Matriz 2</h3>
<div id="output2"></div>
</div>
</div>
<div class="operaciones">
<button id="cmp1-btn">Compatibilidad del Sistema1</button>
<button id="cmp2-btn">Compatibilidad del Sistema2</button>
<button id="inv1-btn">Calcular Inversa de 1</button>
<button id="inv2-btn">Calcular Inversa de 2</button>
<button id="mul-btn">Multiplicar</button>
<button id="suma-btn">Sumar</button>
</div>
<div>
<h3>Resultado</h3>
<p>Si la matriz no tiene inversa, o suma y multiplicacion no estan definidas el resultado sera incorreccto.</p>
<div id="resultado"></div>
<button id="reset-all">Reset</button>
</div>
</div>
</div>
<script type="module" src="./index.mjs"></script>
</body>
</html>