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/re Normal file
View File

@@ -0,0 +1,26 @@
NAME
re - real part of a real or complex number
SYNOPSIS
re(x)
TYPES
x real or complex
return real
DESCRIPTION
If x = u + v * 1i where u and v are real, re(x) returns u.
EXAMPLE
> print re(2), re(2 + 3i), re(-4.25 - 7i)
2 2 -4.25
LIMITS
none
LIBRARY
COMPLEX *cimag(COMPLEX *x)
SEE ALSO
im