-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (37 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<link href="http://getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="http://getbootstrap.com/examples/justified-nav/justified-nav.css" rel="stylesheet">
<style>
.axis path {
fill: none;
stroke: #777;
shape-rendering: crispEdges;
}
.axis text {
font-family: Lato;
font-size: 13px;
}
</style>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h2>Simulation of habituation</h2>
<svg id="visualisation" width="600" height="200"></svg>
<svg id="visualisation2" width="600" height="200"></svg>
<h2>Response single neuron with positive feedback</h2>
<svg id="visualisation3" width="600" height="200"></svg>
<br>
<br>
<p>
Output when feedback > 1
</p>
<svg id="visualisation4" width="600" height="200"></svg>
</div>
</div>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="bundle.js"></script>
</body>
</html>