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

26
help/isqrt Normal file
View File

@@ -0,0 +1,26 @@
NAME
isqrt - integer part of square root
SYNOPSIS
isqrt(x)
TYPES
x nonnegative real
return nonnegative real
DESCRIPTION
Return the greatest integer n for which n^2 <= x.
EXAMPLE
> print isqrt(8.5), isqrt(200), isqrt(2e6), isqrt(2e56)
2 14 1414 14142135623730950488016887242
LIMITS
x > 0
LIBRARY
NUMBER *qisqrt(NUMBER *x)
SEE ALSO
sqrt, iroot