mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
Release calc version 2.10.2t30
This commit is contained in:
26
help/isqrt
Normal file
26
help/isqrt
Normal 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
|
Reference in New Issue
Block a user