-
Notifications
You must be signed in to change notification settings - Fork 0
/
Funktion.java
281 lines (211 loc) · 7.41 KB
/
Funktion.java
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
package application.model;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.paint.Color;
public class Funktion {
// Signatur der Funktion: Vorschrift (name)
// Definitions- und Wertebereich (gc)
private String name;
private GraphicsContext gc;
private double skalFunk;
private double skalArg;
private double plusArg;
private double plusFunk;
// Konstanten
private static final String SQRT = "sqrt";
private static final String EXP = "exp";
private static final String LN = "ln";
private static final String SIN = "sin";
private static final String COS = "cos";
private static final double xMitte = 350;
private static final double yMitte = 250;
private static final double skalEinheit = 50;
private static final double dicke = 1.0;
private static final Color funkFarbe = Color.GREEN;
private static final Color polyFarbe = Color.RED;
// Konstruktor
public Funktion (String name, GraphicsContext gc, double skalFunk, double skalArg, double plusArg, double plusFunk) {
this.name = name;
this.gc = gc;
this.skalFunk = skalFunk;
this.skalArg = skalArg;
this.plusArg = plusArg;
this.plusFunk = plusFunk;
}
/*** Methoden ***/
// Funktionswert f(x)
public double bewerteFunktion (double x) {
double funkWert;
switch (this.name) {
case SQRT :
funkWert = skalFunk * Math.sqrt( skalArg * x + plusArg ) + plusFunk;
break ;
case EXP :
funkWert = skalFunk * Math.exp( skalArg * x + plusArg ) + plusFunk;
break ;
case LN :
funkWert = skalFunk * Math.log( skalArg * x + plusArg ) + plusFunk;
break ;
case SIN :
funkWert = skalFunk * Math.sin( skalArg * x + plusArg ) + plusFunk;
break ;
case COS :
funkWert = skalFunk * Math.cos( skalArg * x + plusArg ) + plusFunk;
break ;
default:
funkWert = 0;
break;
}
return funkWert;
}
// malt den Graph der Funktion
public void zeichneFunktion (double xStart, double xEnd, double entwPunkt) {
// Dicke der Kurve
gc.setLineWidth(dicke);
// Farbe der Kurve
gc.setStroke(funkFarbe);
// Graph der Funktion
gc.strokeLine(xMitte + skalEinheit * (xStart - entwPunkt),
yMitte - skalEinheit * (bewerteFunktion(xStart) - bewerteFunktion(entwPunkt)),
xMitte + skalEinheit * (xEnd - entwPunkt),
yMitte - skalEinheit * (bewerteFunktion(xEnd) - bewerteFunktion(entwPunkt)));
}
// Polynomwert p(x)
public double bewertePolynom (double entwPunkt, int grad, double xStelle) {
double polyWert = bewerteFunktion(entwPunkt);
for (int k = 1; k <= grad; k++) {
switch (this.name) {
case SQRT :
polyWert += ablWurz(entwPunkt, k) * powFakult(entwPunkt, xStelle, k);
break ;
case EXP :
polyWert += skalFunk * Math.pow(skalArg, grad) *
Math.exp(skalArg * entwPunkt + plusArg) * powFakult(entwPunkt, xStelle, k);
break ;
case LN :
polyWert += ablLog(entwPunkt, k) * powFakult(entwPunkt, xStelle, k);
break ;
case SIN :
polyWert += monomTrig(SIN, entwPunkt, xStelle, k);
break ;
case COS :
polyWert += monomTrig(COS, entwPunkt, xStelle, k);
break ;
default:
break;
}
}
return polyWert;
}
// malt den Graph des Polynoms
public void zeichnePolynom (double xStart, double xEnd, double entwPunkt, int grad) {
// Dicke der Kurve
gc.setLineWidth(dicke);
// Farbe der Kurve
gc.setStroke(polyFarbe);
// Graph des Polynoms
gc.strokeLine(xMitte + skalEinheit * (xStart - entwPunkt),
yMitte - skalEinheit * (bewertePolynom(entwPunkt, grad, xStart) - bewerteFunktion(entwPunkt)),
xMitte + skalEinheit * (xEnd - entwPunkt),
yMitte - skalEinheit * (bewertePolynom(entwPunkt, grad, xEnd) - bewerteFunktion(entwPunkt)));
}
// Getters und Setters
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public double getSkalFunk() {
return skalFunk;
}
public void setSkalFunk(double skalFunk) {
this.skalFunk = skalFunk;
}
public double getSkalArg() {
return skalArg;
}
public void setSkalArg(double skalArg) {
this.skalArg = skalArg;
}
public double getPlusArg() {
return plusArg;
}
public void setPlusArg(double plusArg) {
this.plusArg = plusArg;
}
public double getPlusFunk() {
return plusFunk;
}
public void setPlusFunk(double plusFunk) {
this.plusFunk = plusFunk;
}
/*** HILFSFUNKTIONEN ***/
// Fakultaet-Funktion
public long fakultaet (int n) {
long fak = 1;
if ( n == 0 || n == 1 )
return fak;
for ( int i = 2; i <= n; ++i )
fak *= i;
return fak;
}
// Funktion fuer den gemeinsamen Teil aller Monome in Taylor
public double powFakult (double punkt, double x, int grad) {
return Math.pow(x - punkt, grad) / fakultaet(grad);
}
// Berechnung der Monome in der Approximation von Sinus oder Cosinus
public double monomTrig (String funk, double punkt, double x, int grad) {
// gemeinsamer Teil
double powFakult = powFakult(punkt, x, grad);
if ( funk == SIN )
// grad ist gerade => Ableitung ist sin
if ( grad % 2 == 0 )
// Vorzeichen beachten!
if ( grad == 2 || grad == 6 || grad == 10 )
return -1 * skalFunk * Math.pow(skalArg, grad) * Math.sin(skalArg * punkt + plusArg) * powFakult;
else
return skalFunk * Math.pow(skalArg, grad) * Math.sin(skalArg * punkt + plusArg) * powFakult;
// grad ist ungerade => Ableitung ist cos
else
if ( grad == 3 || grad == 7 )
return -1 * skalFunk * Math.pow(skalArg, grad) * Math.cos(skalArg * punkt + plusArg) * powFakult;
else
return skalFunk * Math.pow(skalArg, grad) * Math.cos(skalArg * punkt + plusArg) * powFakult;
else if ( funk == COS )
// grad ist gerade => Ableitung ist cos
if ( grad % 2 == 0 )
if ( grad == 2 || grad == 6 || grad == 10 )
return -1 * skalFunk * Math.pow(skalArg, grad) * Math.cos(skalArg * punkt + plusArg) * powFakult;
else
return skalFunk * Math.pow(skalArg, grad) * Math.cos(skalArg * punkt + plusArg) * powFakult;
// grad ist ungerade => Ableitung ist sin
else
if ( grad == 1 || grad == 5 || grad == 9 )
return -1 * skalFunk * Math.pow(skalArg, grad) * Math.sin(skalArg * punkt + plusArg) * powFakult;
else
return skalFunk * Math.pow(skalArg, grad) * Math.sin(skalArg * punkt + plusArg) * powFakult;
else
return 0;
}
// Ableitung der Wurzel
// n-te Ableitung: (-1)^(n+1) * ( Produkt(2k+1) von k=0 bis n-2 ) / 2^n * x ^-(2n-1)/2
public double ablWurz (double x, int ord) {
if ( ord == 1 )
return 0.5 * skalFunk * skalArg * Math.pow(skalArg * x + plusArg, -0.5);
else {
double faktor;
double produkt = 1;
for ( int k = 0; k <= ord - 2; k++ ) {
faktor = 2*k + 1;
produkt *= faktor;
}
return Math.pow(-1, ord+1) * produkt * skalFunk * Math.pow(skalArg, ord) /
Math.pow(2, ord) * Math.pow(skalArg * x + plusArg, 0.5-ord);
}
}
// Ableitung von Logarithmus
// n-te Ableitung: (-1)^(n+1) * (n-1)! * x^-n
public double ablLog (double x, int ord) {
return Math.pow(-1, ord+1) * fakultaet(ord-1) * skalFunk * Math.pow(skalArg, ord) / Math.pow(skalArg * x + plusArg, ord);
}
}