-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
48 lines (47 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.plot.ly/plotly-2.12.1.min.js"></script>
<title>Beamformer!</title>
<style>
body {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<div id='plot' width="80%" height="100%"></div>
<script src="index.js" type="module"></script>
<form>
<h4>ULA</h4>
<label>Number of Sensors</label><br>
<label id="nsens"></label>
<input type="range" id="nsensor" name="nsensor" min=1 max=20>
<h4>Method</h4>
<input type="radio" id="Beamform" name="method" value="Beamform">
<label for="Beamform">Beamform</label><br>
<input type="radio" id="Capon" name="method" value="Capon">
<label for="Capon">Capon</label><br>
<input type="radio" id="Apes" name="method" value="Apes">
<label for="Apes">APES</label><br>
<h4>Disturbance</h4>
<input type="checkbox" id="Coherent" name="noise" value="coh">
<label for="Coherent">Coherent</label><br>
<br>
<label>Array Perturbation</label><br>
<input type="text" id="Pert" name="noise" value=0.0><Br>
<br>
<label>Amplitude (1-50)</label><br>
<input type="range" id="amp" name="amp" min=1 max=50>
</form>
</body>
</html>