-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
26 lines (26 loc) · 1.72 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Iterated Functions</title>
<link href='http://fonts.googleapis.com/css?family=Lora:400,400italic' rel='stylesheet' type='text/css'>
<link href="js/libs/twitter-bootstrap/css/bootstrap-theme.css" rel="stylesheet" type="text/css"/>
<link href="js/libs/twitter-bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css"/>
<link href="css/index.css" rel="stylesheet" type="text/css"/>
<script src="js/libs/jquery/jquery.js" type="text/javascript"></script>
<script src="js/libs/twitter-bootstrap/js/bootstrap.js" type="text/javascript"></script>
<script src="js/libs/d3/d3.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML" type="text/javascript"></script>
<script src="js/complex.js" type="text/javascript"></script>
<script src="js/index.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
<h1>Iterated Functions</h1>
<svg id="graph" xmlns="http://www.w3.org/2000/svg"></svg>
<div id="funcDescrip"></div>
<div id="funcChooser"></div>
<div id="instructions">The function shown above is iterated in the complex plane. The iteration is done by first applying the function to <span style="color: #1f77b4">\(z_0\)</span>, then applying it again to the result, and so on. Both the point <span style="color: #1f77b4">\(z_0\)</span> and the constant <span style="color: #ff7f0e">\(a\)</span> can be dragged to change their values, which are shown in the upper-left.</div>
</div>
</body>
</html>