This repository has been archived by the owner on Nov 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (44 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>DE Practicum</title>
<link rel="stylesheet" href="styles/global.css" />
<link rel="stylesheet" href="styles/graph.css" />
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.8.0"></script>
<script type="module" src="scripts/initializer.js"></script>
</head>
<body>
<div id="graph" class="section">
<div id=input>
<div class="param">
<p>x0</p>
<input id="x0" type=number value=0 step=0.0001 />
</div>
<div class="param">
<p>y0</p>
<input id="y0" type=number value=0.7071 step=0.0001 />
</div>
<div class="param">
<p>X</p>
<input id="X" type=number value=3 />
</div>
<div class="param">
<p>N0</p>
<input id="N0" type=number value=25 min=1 step=1 />
</div>
<div class="param">
<p>N</p>
<input id="N" type=number value=50 min=1 step=1 />
</div>
<div class="param">
<p>C</p>
<input id="C" type=number value=0 step=0.0001 readonly />
</div>
</div>
<div class="chart" id="function"><canvas></canvas></div>
<div class="chart" id="localError"><canvas></canvas></div>
<div class="chart" id="globalError"><canvas></canvas></div>
</div>
</body>
</html>