-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (57 loc) · 2.92 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
69
<html>
<head>
<title>Hodgkin-Huxley</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="Hodgkin-Huxley Neuron Model Playground">
<meta name="keywords" content="Hodgkin-Huxley, neuron, model, integrator, engineering">
<meta name="author" content="Abhishek Shenoy">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="./assets/css/styles.css" rel="stylesheet" type="text/css"></link>
<link href="./assets/css/draggable.css" rel="stylesheet" type="text/css"></link>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
</head>
<body>
<div id="controls">
<div class="inline-div" style="width: 250px;">
<p>Interpolation method</p>
<select id="methodDropdown">
<option value="Linear" selected="selected">Linear</option>
<option value="FiniteDifference">Cubic (finite difference)</option>
<!-- <option value="Cardinal">Cubic (cardinal)</option> -->
<option value="FritschCarlson">Cubic monotonic (Fritsch-Carlson)</option>
<option value="FritschButland">Cubic monotonic (Fritsch-Butland)</option>
<option value="Steffen">Cubic monotonic (Steffen)</option>
</select>
</div>
<!--
<div class="inline-div" style="width: 250px;">
<p>Tension (for cubic-cardinal only)</p>
<input id="tensionSlider" type="range" min="0" max="1" value="0.5" step="0.1">
<div id="tensionbox">0.5</div>
</div>-->
<!--<div class="inline-div" style="width: 200px;">
<p>Test data</p>
<select id="testdataDropdown">
<option value="test" selected="selected">Test dataset</option>
<option value="test1">Test1 dataset</option>
</select>
</div> -->
</div>
<div id="main">
<h2>Hodgkin-Huxley Model</h2>
<div id="graph1" class="plot"></div>
<div id="graph2" class="plot"></div>
<div id="graph3" class="plot"></div>
<div id="graph4" class="plot"></div>
<div id="graph5" class="plot"></div>
<div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script async defer src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script async defer src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script async type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_SVG"></script>
<script src="./assets/js/draggable.js"></script>
<script src="./assets/js/interpolator.js"></script>
<script src="./assets/js/app.js"></script>
</body>
</html>