Commit 1a74aab1 by James Smaby Committed by Toon Moene

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
parent 4608d36c
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> 2001-07-04 Joseph S. Myers <jsm28@cam.ac.uk>
* g77.texi: Use gpl.texi and funding.texi. Remove Look and Feel * 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 ...@@ -55,11 +55,11 @@ If @var{@1@} is type @code{COMPLEX}, the absolute
value is computed as: value is computed as:
@example @example
SQRT(REALPART(@var{@1@})**2, IMAGPART(@var{@1@})**2) SQRT(REALPART(@var{@1@})**2+IMAGPART(@var{@1@})**2)
@end example @end example
@noindent @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@}. it is negative, or returning @var{@1@}.
@xref{Sign Intrinsic}, for how to explicitly @xref{Sign Intrinsic}, for how to explicitly
......
...@@ -868,11 +868,11 @@ If @var{A} is type @code{COMPLEX}, the absolute ...@@ -868,11 +868,11 @@ If @var{A} is type @code{COMPLEX}, the absolute
value is computed as: value is computed as:
@example @example
SQRT(REALPART(@var{A})**2, IMAGPART(@var{A})**2) SQRT(REALPART(@var{A})**2+IMAGPART(@var{A})**2)
@end example @end example
@noindent @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}. it is negative, or returning @var{A}.
@xref{Sign Intrinsic}, for how to explicitly @xref{Sign Intrinsic}, for how to explicitly
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment