1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
opal-examples/Blatt05/MathHOF.impl
2013-10-19 01:17:37 +02:00

12 lines
204 B
Plaintext

IMPLEMENTATION MathHOF
IMPORT Real COMPLETELY
DEF shiftX == \\f,x,deltaX. f(x-deltaX)
DEF mirrorY == \\f,x. 0-f(x)
DEF myCos == \\x. shiftX(sin,x,0-pi/2)
DEF myCot == \\x. myCos(x)/sin(x)