-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 937 Bytes
/
index.html
File metadata and controls
34 lines (30 loc) · 937 Bytes
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
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kalman Filter JS Mouse Tracking</title>
<link rel='stylesheet' type='text/css' href='test-style.css'/>
<script src="https://cdn.jsdelivr.net/npm/p5@1.1.9/lib/p5.js"></script>
<script src="matrix.js"></script>
<script src="sketch.js"></script>
</head>
<body>
<main>
<div class="space">
<div id="sketch-holder"></div>
<div>
<div id="sliders" class="right"></div>
P:<table id="P"></table><br>
Q:<table id="Q"></table><br>
R:<table id="R"></table><br>
K:<table id="K"></table><br>
</div>
</div>
<br>
</div>
<div id="checkboxes" class="left">Toggle Lines:</div>
<div class="right"><a href="https://github.com/GR-Code/kalman-js" title="kalman-js">Github Repo</a></div>
</main>
</body>
</html>