Programs from Computing Prescriptions
Notes to myself re: gcc
- CiSE article Adventures in the Forth Dimension (CiSE, vol. 02, no. 5, pp. 6-10, Sept/Oct, 2000):
- From CiSE column Gauss-Legendre Principal Value Integration (CiSE Jan/Feb 2000, p. 92) (*.pdf manuscript)
- Principal value integration Forth
C
- From CiSE column The Full Monte (*.pdf manuscript)
- Brute-force Monte-Carlo integration Forth
- From CiSE column Recurses! (*.pdf manuscript)
- Euclid's algorithm for greates common divisor: Forth recursive C (recursive)
- Extended Euclid algorithm for GCD: Forth (recursive) C (recursive)
- Extended Euclid algorithm for GCD: Forth (iterative) C (iterative)
- Adaptive integration: Forth (recursive) C (recursive)
- Recursive binary-search root-finder: Forth
C
- Raise an integer to a positive integer power: Recursive C version Iterative C version
- CiSE column Feeling No Pain in the Argand Plane
- From CiSE column "The Whole Enchilada" (in progress)
- Adaptive integration: Forth (iterative) C (iterative) C factored version using structs (iterative)