remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / unmaintained / math / newtons-method / newtons-method.factor
blob4b53b1222d913e7472e7ba87f6b8ecc439b749dd
1 ! Copyright (c) 2008 Reginald Keith Ford II.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: kernel math math.derivatives ;
4 IN: math.newtons-method
6 ! Newton's method of approximating roots
8 <PRIVATE
10 : newton-step ( x function -- x2 )
11     dupd [ call ] [ derivative ] 2bi / - ; inline
13 : newton-precision ( -- n ) 13 ; inline
15 PRIVATE>
17 : newtons-method ( guess function -- x )
18     newton-precision [ [ newton-step ] keep ] times drop ;