-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·76 lines (68 loc) · 2.21 KB
/
Copy pathindex.html
File metadata and controls
executable file
·76 lines (68 loc) · 2.21 KB
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
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="de">
<head>
<title>Newton-Verfahren</title>
<link rel="stylesheet" href="master.css"/>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lte IE 8]>
<script language="javascript" type="text/javascript" src="js/flot/excanvas.min.js">
</script>
<![endif]-->
</head>
<body>
<h1>Newton-Verfahren</h1>
<div style="position:relative;display:block;" class="clearfix">
<div id="plotCont">
<span id="arrow"><</span>
<div id="plot"> </div>
<div id="settings">
<table id="stable">
<caption>Settings</caption>
<tr class="tohide">
<th>Function</th>
<td>f(x) = <input type="text" id="function" size="30"
value="SIN(x * SIN(x))"/></td>
</tr>
<tr class="tohide">
<th>start-value</th>
<td><input type="number" id="startval" size="8" value="1"/></td>
</tr>
<tr>
<th>x-axis</th>
<td>
x1: <input type="number" id="xval1" size="8" value="-1"/> <br>
x2: <input type="number" id="xval2" size="8" value="2"/>
</td>
</tr>
<tr>
<th>Number of steps</th>
<td id="counter">0</td>
</tr>
<tr>
<th>Newton</th>
<td> <input type="button" id="itstep" value="Iterationstep"/> </td>
</tr>
</table>
<div id="overview"></div>
<p id="overviewLegend"></p>
</div>
<table id="steps">
<tr>
<th class="small">Step</th>
<th>x<sub>n</sub></th>
<th>x<sub>n</sub> - f(x<sub>n</sub>) / f'(x<sub>n</sub>)</th>
<th>f(x)</th>
<th>f'(x)</th>
</tr>
</table>
</div>
</div>
<footer>Ein Projekt von Lukas Havemann (2011)</footer>
<script src="jquery.js"></script>
<script src="flot/jquery.flot.min.js"> </script>
<script src="flot/jquery.flot.selection.min.js"></script>
<script src="math.js"></script>
</body>
</html>