forked from vtwireless/HLSI
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathuserData_example.html
57 lines (38 loc) · 1.09 KB
/
userData_example.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>UserData</title>
<meta charset="UTF-8"/>
<link rel=stylesheet type=text/css href=hlsi.css>
<link rel=stylesheet type=text/css href=codemirror.min.css />
<link rel=stylesheet type=text/css href=blackboard.min.css />
<script src=codemirror.min.js></script>
<script src=codeMirror_javascript.js></script>
<script src=scriptController.js></script>
<script src=signal.js></script>
<script src=powerSpectrumPlot.js></script>
<script src=common.js></script>
<script src=fft.js></script>
<script src=d3.v5.min.js></script>
<script src=sliders.js></script>
</head>
<body>
<h2>UserData example</h2>
<p><a href="devel_index.html">[Index]</a></p>
<p>
This page is not intended to be a usable example, it's just
an example.
</p>
</body>
<script>
'use strict';
var sig1 = new Signal(conf.sig0, '1');
new ScriptController([sig1],
{ functionFiles: "functions/userData_example_1.js" });
Slider(sig1, 'freq');
Slider(sig1, 'bw');
Slider(sig1, 'gn');
Slider(sig1, 'mcs');
PowerSpectrumPlot([sig1]);
</script>
</html>