-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathexponential.html
27 lines (27 loc) · 1.21 KB
/
exponential.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
<html>
<head>
<meta name="copyright" content="Copyright © 2019/04/12- [email protected] . All Rights Reserved.">
<meta charset="utf-8">
<title> Exponential </title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="controlPanel">
<div>
a:<input id="aRange" type="range" min="1" max="5" step="0.000000000001" value="2.718281828459" style="width:256px;">:<input type="text" id="aText" size="5" value="2.718281828459" style="width:128px;">
</div>
<div>
exp(a,x):<input id="expCheckbox" type="checkbox" checked> <br />
(exp(a,x+h)-exp(a,x)/h:<input id="expdiffCheckbox" type="checkbox" checked> <br />
exp(a,x)*log(a):<input id="explogCheckbox" type="checkbox">
</div>
</div> <!-- controlPanel -->
<canvas id="graphCanvas" class="borderGreen" width=512 height=512> srcCanvas </canvas>
</div> <!-- container -->
<script type="text/javascript" src="lib/bind.js"> </script>
<script type="text/javascript" src="lib/canvas.js"> </script>
<script type="text/javascript" src="lib/graph.js"> </script>
<script type="text/javascript" src="exponential.js"> </script>
</body>
</html>