factor/extra/math/function-tools/function-tools.factor

9 lines
343 B
Factor
Raw Normal View History

2008-07-22 04:31:11 -04:00
! Copyright © 2008 Reginald Keith Ford II
2008-07-22 20:45:13 -04:00
! Tools for quickly comparing, transforming, and evaluating mathematical Factor functions
2008-07-22 04:31:11 -04:00
USING: kernel math arrays ;
IN: math.function-tools
: difference-func ( func func -- func ) [ bi - ] 2curry ;
: eval ( x func -- pt ) dupd call 2array ;
2008-07-22 20:45:13 -04:00
: eval3d ( x y func -- pt ) [ 2dup ] dip call 3array ;