-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMain_.html
44 lines (35 loc) · 1.41 KB
/
Main_.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LDU-Factorisation</title>
<script src="Main_.js"></script>
<link rel="stylesheet" href="Main_.css">
</head>
<body>
<div class="a">
<h1>LDU Factorization Calculator</h1>
<h3>Working: <br> <h5>We Need To Convert In Lower-Upper-Diagonal Matrix </h5></h3>
<br>
<br>
<br>
<p>Enter the size of the matrix :</p>
<input type="number" id="matrixSize" min="1" placeholder="Matrix Size">
<button onclick="getMatrix()">Generate Matrix</button>
<div id="matrixInput"></div>
<button onclick="calculateLDU()" id="calculateButton" style="display: none;">Calculate LDU</button>
<h2>Step-Wise LDU Factorization</h2>
<div id="result"></div>
<section>
<h5>Click on link below</h3>
<br>
<li><a href="lower triangle1.html final.html">Lower-Triangular-Matrix</a></li>
<li><a href="diagonal.html">diagonal-Matrix</a></li>
<li><a href="utm (1).html">Upper-Triangular-Matrix</a></li>
</section>
</div>
<!-- added new file of separated code of javascript to get matrix from user -->
<script src="MatrixFind_.js"></script>
</body>
</html>