Release calc version 2.10.2t30

This commit is contained in:
Landon Curt Noll
1996-07-06 04:17:00 -07:00
commit 4618313a82
388 changed files with 85904 additions and 0 deletions

28
help/ilog Normal file
View File

@@ -0,0 +1,28 @@
NAME
ilog - floor of logarithm to specified integer base
SYNOPSIS
ilog(x, b)
TYPES
x nonzero real
b integer greater than 1
return integer
DESCRIPTION
Returns the greatest integer n for which b^n <= abs(x).
EXAMPLE
> print ilog(2, 3), ilog(8, 3), ilog(8.9, 3), ilog(1/8, 3)
0 1 1 -2
LIMITS
x > 0
b > 1
LIBRARY
long zlog(ZVALUE x, ZVALUE b)
SEE ALSO
ilog2, ilog10