-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmath.js
More file actions
executable file
·255 lines (216 loc) · 6.07 KB
/
math.js
File metadata and controls
executable file
·255 lines (216 loc) · 6.07 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
//math.js by Lukas Havemann
//The Options for the big plot-view
var plotOptions = {
legend:{
show: false
},
series:{
lines:{
show: true
},
shadowSize: 0
},
yaxis:{
ticks: 10
},
selection:{
mode: "xy"
},
grid:{
backgroundColor: {
colors: ["#fff", "#eee"]
},
markings : [
{
color: '#000',
lineWidth: 1,
yaxis:{
from: 0,
to : 0,
}
},
{
color: '#000',
lineWidth: 1,
xaxis:{
from: 0,
to : 0
},
//the range should be big enough ;-)
yaxis:{
from: 1E100,
to : -1E100
}
}
]
}
};
//Options for the Overview plot
var overviewOptions = {
legend:{
show: true,
container: $("#overviewLegend")
},
series:{
lines:{
show: true,
lineWidth: 1
},
shadowSize: 2
},
grid:{
color: "#666",
backgroundColor:{
colors: ["#fff", "#eee"]
}
},
selection:{
mode: "xy"
}
}
function diff(func, x){
var delta = 1e-15
return (func(x+delta) - func(x-delta)) / ((x+delta) - (x-delta))
}
//cuts the value to a given precision
function cut(value, prec){
var precision = prec || 100000000;
return Math.floor(value * precision) / precision;
}
//Configure flot (Code from flot example)
var plot, overview;
function setupPlot(){
$("#plot").bind("plotselected", function (event, ranges) {
// clamp the zooming to prevent eternal zoom
if (ranges.xaxis.to - ranges.xaxis.from < 0.00001)
ranges.xaxis.to = ranges.xaxis.from + 0.00001;
if (ranges.yaxis.to - ranges.yaxis.from < 0.00001)
ranges.yaxis.to = ranges.yaxis.from + 0.00001;
// do the zooming
plot = $.plot($("#plot"), getData(ranges.xaxis.from, ranges.xaxis.to),
$.extend(true, {}, plotOptions, {
xaxis: { min: ranges.xaxis.from, max: ranges.xaxis.to },
yaxis: { min: ranges.yaxis.from, max: ranges.yaxis.to }
}));
// don't fire event on the overview to prevent eternal loop
overview.setSelection(ranges, true);
});
$("#overview").bind("plotselected", function (event, ranges) {
plot.setSelection(ranges);
});
}
function plotFunc(){
//getting the range
var x1 = parseInt($("#xval1").val()),
x2 = parseInt($("#xval2").val());
if(x1 >= x2){
alert("Falsche Range-Angabe!");
return false;
}
var data = getData(x1, x2);
plot = $.plot($("#plot"), data, plotOptions);
overview = $.plot($("#overview"), data, overviewOptions)
}
//generate the 100 P(x|f(x)) for a given range [x1; x2]
function applyFunction(x1, x2, f){
var data = [];
for (var i = 0, x; i <= 100; ++i) {
x = x1 + i * (x2 - x1) / 100;
data.push([x, f(x)]);
}
return data;
}
function updateView(xn, fstr, f, it, tmp){
$(".tohide").slideUp(1000);
$("#counter").html(it);
$("#steps").append([
'<tr><th class="small">', it,
"</th><td>", cut(xn), "</td><td>", cut(tmp),
"</td><td>", cut(f), "</td><td>", cut(fstr),
"</td></tr>"].join(''));
}
function substitute(string){
replacements = {
"SIN" : "Math.sin",
"COS" : "Math.cos",
"TAN" : "Math.tan",
"ASIN" : "Math.asin",
"ACOS" : "Math.acos",
"ATAN" : "Math.atan",
"POW" : "Math.pow",
"SQRT" : "Math.sqrt",
"ABS" : "Math.abs",
"LOG" : "Math.log",
"pi" : "Math.PI",
"e" : "Math.E"
}
for(var key in replacements){
for(var i = string.split(key).length-1; i >= 0; i--){
string = string.replace(key, replacements[key]);
}
}
return string;
}
//standard implementation will be overided while execution of the application
var getData = function(x1, x2) {
return [
{
label: "sin(x sin(x))",
color: "#F00",
data : applyFunction(x1, x2, function(x) {
return Math.sin(x * Math.sin(x));
})
}
];
}
$(document).ready(function() {
setupPlot()
plotFunc()
$("#arrow").toggle(function(){
$("#arrow").html(">");
$("#settings").animate({"right" : "5px"});
}, function(){
$("#arrow").html("<");
$("#settings").animate({"right" : "-340px"});
});
var xn = null;
var funcs = [];
$("#itstep").click(function(){
var it = parseInt($("#counter").html()) +1;
eval("var func = function(x){ return " +
substitute($("#function").val()) + "; }");
if(xn === null){
xn = parseInt($("#startval").val())
}
var fstr = diff(func, xn),
f = func(xn),
tmp = xn - (f / fstr);
funcs.push({
label : "Tangente " + it,
func : (function(xn){
return function(x) {
return fstr * (x - xn) + f
}})(xn)
})
getData = function(x1, x2) {
var tmp = [
{
label: $("#function").val(),
data : applyFunction(x1, x2, func),
color: "#f00"
}
];
for(var j in funcs){
tmp.push({
label : funcs.label,
data : applyFunction(x1, x2, funcs[j].func),
color : "#999"
})
}
return tmp;
}
updateView(xn, fstr, f, it, tmp)
xn = tmp;
plotFunc()
});
});