mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-27 22:45:13 +08:00
intdoc.in: Fix the definition of COMPLEX ABS.
2001-07-10 James Smaby <jsmaby@virgo.umeche.maine.edu> * intdoc.in: Fix the definition of COMPLEX ABS. Remove `the' where inappropriate. * intdoc.texi: Rebuilt. From-SVN: r43892
This commit is contained in:
parent
4608d36c09
commit
1a74aab130
@ -1,3 +1,9 @@
|
||||
2001-07-10 James Smaby <jsmaby@virgo.umeche.maine.edu>
|
||||
|
||||
* intdoc.in: Fix the definition of COMPLEX ABS.
|
||||
Remove `the' where inappropriate.
|
||||
* intdoc.texi: Rebuilt.
|
||||
|
||||
2001-07-04 Joseph S. Myers <jsm28@cam.ac.uk>
|
||||
|
||||
* g77.texi: Use gpl.texi and funding.texi. Remove Look and Feel
|
||||
|
@ -55,11 +55,11 @@ If @var{@1@} is type @code{COMPLEX}, the absolute
|
||||
value is computed as:
|
||||
|
||||
@example
|
||||
SQRT(REALPART(@var{@1@})**2, IMAGPART(@var{@1@})**2)
|
||||
SQRT(REALPART(@var{@1@})**2+IMAGPART(@var{@1@})**2)
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
Otherwise, it is computed by negating the @var{@1@} if
|
||||
Otherwise, it is computed by negating @var{@1@} if
|
||||
it is negative, or returning @var{@1@}.
|
||||
|
||||
@xref{Sign Intrinsic}, for how to explicitly
|
||||
|
@ -868,11 +868,11 @@ If @var{A} is type @code{COMPLEX}, the absolute
|
||||
value is computed as:
|
||||
|
||||
@example
|
||||
SQRT(REALPART(@var{A})**2, IMAGPART(@var{A})**2)
|
||||
SQRT(REALPART(@var{A})**2+IMAGPART(@var{A})**2)
|
||||
@end example
|
||||
|
||||
@noindent
|
||||
Otherwise, it is computed by negating the @var{A} if
|
||||
Otherwise, it is computed by negating @var{A} if
|
||||
it is negative, or returning @var{A}.
|
||||
|
||||
@xref{Sign Intrinsic}, for how to explicitly
|
||||
|
Loading…
Reference in New Issue
Block a user