diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:41:09 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:41:09 +0300 |
commit | 8c042f99cc7465c86351d21331a129111b75345d (patch) | |
tree | 9656e653be0e42e5469cec77635c20356de152c2 /test/numfunc.awk | |
parent | 8ceb5f934787eb7be5fb452fb39179df66119954 (diff) | |
download | egawk-8c042f99cc7465c86351d21331a129111b75345d.tar.gz egawk-8c042f99cc7465c86351d21331a129111b75345d.tar.bz2 egawk-8c042f99cc7465c86351d21331a129111b75345d.zip |
Move to gawk-3.0.0.
Diffstat (limited to 'test/numfunc.awk')
-rw-r--r-- | test/numfunc.awk | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/test/numfunc.awk b/test/numfunc.awk deleted file mode 100644 index de1d7a4d..00000000 --- a/test/numfunc.awk +++ /dev/null @@ -1,19 +0,0 @@ -BEGIN { - y = 8 - x = 1 - while (x < 256) { - print "arctan", y/x, atan2(y , x) - x += x - } - print "" - pi8 = atan2(1, 1) / 2 - arg = 0 - for (i = 0; i <= 8; i++) { - print "cos sin", arg, cos(arg), sin(arg) - arg += pi8 - } - print "" - for (i = -5; i<= 5; i++) { - print "exp log", i, exp(i), log(exp(i)) - } -} |