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

27
help/iroot Normal file
View File

@@ -0,0 +1,27 @@
NAME
iroot - integer part of specified root
SYNOPSIS
iroot(x, n)
TYPES
x nonnegative real
n positive integer
return nonnegative real
DESCRIPTION
Return the greatest integer v for which v^n <= x.
EXAMPLE
> print iroot(100,3), iroot(274,3), iroot(1,9), iroot(pi()^8,5)
4 6 1 6
LIMITS
n > 0
LIBRARY
NUMBER *qiroot(NUMBER *x, NUMBER* n)
SEE ALSO
isqrt, sqrt