In pointful notation:
absoluteError x y = abs (x-y)
An unclear example in pointfree notation:
absoluteError' = curry (abs . uncurry (-))
|
Here's how you could derive it yourself, in small steps:
so, by eta-reduction, if Further, using
|
||||
|
Here's a handful of ways.
Of course, these are all the same trick, just with different names. Enjoy! |
|||||||||
|
(abs .) . (-)– Vitus Jun 13 '12 at 0:43