Update of /cvsroot/win32forth/win32forth/doc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19199/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.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** p-float.htm 24 Jan 2006 09:22:39 -0000 1.2
--- p-float.htm 28 Jan 2006 10:28:30 -0000 1.3
***************
*** 121,125 ****
</h3><h3>Comparison operators
</h3><h3>Maths operators
! </h3><h3>Output conversion.
</h3><pre><b><a name="0">: PRECISION ( -- u ) \ ANSI Floating ext
</a></b></pre><p>Return the number of significant digits currently used by (F.), (FE.), (FS.), F.,
--- 121,140 ----
</h3><h3>Comparison operators
</h3><h3>Maths operators
! </h3><pre><b><a name="0">code F+ ( fs: r1 r2 -- r3 ) \ ANSI Floating
! </a></b></pre><p>Add r1 to r2.
! </p><pre><b><a name="0">code F- ( fs: r1 r2 -- r3 ) \ ANSI Floating
! </a></b></pre><p>Subtract r2 from r1.
! </p><pre><b><a name="0">code F* ( fs: r1 r2 -- r3 ) \ ANSI Floating
! </a></b></pre><p>Multiply r1 by r2.
! </p><pre><b><a name="0">code F/ ( fs: r1 r2 -- r3 ) \ ANSI Floating
! </a></b></pre><p>Divide r1 by r2.
! </p><pre><b><a name="0">code FNEGATE ( fs: r1 -- r2 ) \ ANSI Floating
! </a></b></pre><p>Reverse the sign of r1.
! </p><h3>Trigonometric functions
! </h3><h3>Inverse Trigonometric functions
! </h3><pre><b><a name="0">code FATAN2 ( fs: r1 r2 -- r3 ) \ ANSI Floating ext
! </a></b></pre><p>r3 is the radian angle whose tangent is r1/r2. If r1 and r2 are both zero then r3
! is zero.
! </p><h3>Output conversion.
</h3><pre><b><a name="0">: PRECISION ( -- u ) \ ANSI Floating ext
</a></b></pre><p>Return the number of significant digits currently used by (F.), (FE.), (FS.), F.,
***************
*** 133,137 ****
</p><h3>Format FP number to a buffer
</h3><p>The following words are for formatting floating point numbers as counted strings in
! the buffer whose address supplied so they can be used for purposes other than printing
the numbers to the console. The string is not null terminated.
</p><pre><b><a name="0">: (F.) ( addr -- ) ( F: r -- ) \ W32F Floating extra
--- 148,152 ----
</p><h3>Format FP number to a buffer
</h3><p>The following words are for formatting floating point numbers as counted strings in
! the buffer whose address is supplied so they can be used for purposes other than printing
the numbers to the console. The string is not null terminated.
</p><pre><b><a name="0">: (F.) ( addr -- ) ( F: r -- ) \ W32F Floating extra
|