-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (66 loc) · 2.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="code.js"></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="favicon.png" type="image/x-icon" />
<title>Numerical solver for linear systems</title>
</head>
<body>
<div class="main fade" id="cover">
<div class="flex-wrapper">
<div class="image-wrapper">
<a><img src="cu.png" align="left" class="scale-image"></a>
</div>
<div class="image-wrapper">
<a><img src="fci.png" align="right" class="scale-image"></a>
</div>
</div>
<div class="title">Gauss-Seidel Calculator</div>
<p id="instructions">
Created by Software Engineering students<br/>
2nd year : 2021/2022 <br/>
For direct contact : [email protected]
</p>
<button id="button" onclick="Start()">Start</button>
<div class="title">Submitted by</div>
<p id="instructions">
Mostafa Hesham Allam - 20206126 - 7<br />
Abdulrahman Emad Ismail - 20206148 - 120<br />
Karim Amr Hamdy - 20206138 - 61 <br />
</p>
<div class="title">Under the supervision of</div>
<p id="instructions">Dr. Eng. Mostafa Reda A. El Tantawi</p>
</div>
<div class="main fade" id="calculator">
<label id="title">Gauss – Seidel Method Calculator</label>
<div>
<textarea id="box" placeholder="Enter coefficients"></textarea>
<textarea id="solution"></textarea>
</div>
<div>
<label id="title">Iterations:</label>
<input type="number" id="counter" min="1" max="1000" step="1" value="1">
<label id="title">Seed:</label>
<input type="number" id="seed" min="0" max="1000" step="1" value="0">
</div>
<div id="buttons">
<button id="button1" onclick="calculate()">Calculate</button>
<button id="button2" onclick="reset()">Reset</button>
</div>
<div id="answer"></div>
</div>
<div class="main fade" id="instruct">
<div class="instructions">How to use</div>
<p id="instructions">Enter coefficients seperated by space, <br/>
constants in vertical box <br/>
Seed : Initial value of 1st iteration <br/></p>
<button id="button" onclick="resetAll()">Back</button>
</div>
<div></div>
</div>
</body>
</html>