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

31
help/near Normal file
View File

@@ -0,0 +1,31 @@
NAME
near - compare nearness of two numbers with a standard
SYNOPSIS
near(x, y [,eps])
TYPES
x real
y real
eps real, defaults to epsilon()
return -1, 0 or 1
DESCRIPTION
Returns:
-1 if abs(x - y) < abs(eps)
0 if abs(x - y) = abs(eps)
1 if abs(x - y) > abs(eps)
EXAMPLE
> print near(22/7, 3.15, .01), near(22/7, 3.15, .005)
-1 1
LIMITS
eps >= 0
LIBRARY
FLAG qnear(NUMBER *x, NUMBER *y, NUMBER *eps)
SEE ALSO
epsilon, abs