Die Datei:
Logarithm.java
1
public
2
class
Logarithm
3
implements
RealFunction
4
{
5
public
6
double
at
(
double
x
)
{
7
return
8
Math
.
log
(
x
)
;
9
}
10
11
public
12
String
toString
(
)
{
13
return
14
"log(x)"
;
15
}
16
}
17
Die Quelle:
Logarithm.java
Letzte Änderung: 16.06.2008
©
Prof. Dr. Uwe Schmidt