Update of /cvsroot/win32forth/win32forth/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26990/win32forth/doc
Modified Files:
p-float.htm
Log Message:
gah: More Dexing (still work in progress)
Index: p-float.htm
===================================================================
RCS file: /cvsroot/win32forth/win32forth/doc/p-float.htm,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** p-float.htm 1 Feb 2006 11:44:48 -0000 1.5
--- p-float.htm 1 Feb 2006 12:42:13 -0000 1.6
***************
*** 228,233 ****
polar coordinates.
</p><h3>Logarithmic functions
! </h3><pre><b><a name="0">code FLNP1 ( fs: r1 -- r2 ) \ ANSI Floating ext
! </a></b></pre><p>? error for x <= -1
</p><h3>Exponential functions
</h3><h3>Hyperbolic functions
--- 228,238 ----
polar coordinates.
</p><h3>Logarithmic functions
! </h3><pre><b><a name="0">code FLN ( fs: r1 -- r2 ) \ ANSI Floating ext
! </a></b></pre><p>r2 is the natural logarithm of r1. If r1 is ±0 then r2 is -infinity. If r1
! is infinity then r2 is infinity. If r1 is less than zero then r2 is a NAN.
! </p><pre><b><a name="0">code FLNP1 ( fs: r1 -- r2 ) \ ANSI Floating ext
! </a></b></pre><p>r2 is the natural logarithm of the quantity r1 plus one. If r1 is -1.0 then
! r2 is -infinity. If r1 is infinity then r2 is infinity. If r1 is less than
! -1.0 then r2 is a NAN.
</p><h3>Exponential functions
</h3><h3>Hyperbolic functions
|