diff --git a/src/site/xdoc/userguide/complex.xml b/src/site/xdoc/userguide/complex.xml
index f451ab199..7367dd5b8 100644
--- a/src/site/xdoc/userguide/complex.xml
+++ b/src/site/xdoc/userguide/complex.xml
@@ -26,118 +26,8 @@
- The complex packages provides a complex number type as well as complex
- versions of common transcendental functions and complex number
- formatting.
-
-
- Complex provides a complex number type that forms the basis for
- the complex functionality found in commons-math.
-
- Complex functions and arithmetic operations are implemented in
- commons-math by applying standard computational formulas and
- following the rules for
- To create a complex number, simply call the constructor passing in two
- floating-point arguments, the first being the real part of the
- complex number and the second being the imaginary part:
-
-
- Complex numbers may also be created from polar representations
- using the
- The
-
- Complex also provides implementations of serveral transcendental
- functions involving complex number arguments.
- These operations provide the means to compute the log, sine, tangent,
- and other complex values :
-
-
-
- To customize the formatting output, one or two
-
- Another formatting customization provided by
-
- Formatting inverse operation, parsing, can also be performed by
- java.lang.Double
arithmetic in
- handling infinite and NaN
values. No attempt is made
- to comply with ANSII/IEC C99x Annex G or any other standard for
- Complex arithmetic. See the class and method javadocs for the
-
- Complex and
-
- ComplexUtils classes for details on computing formulas.
- polar2Complex
method in
- ComplexUtils
.
- Complex
class provides basic unary and binary
- complex number operations. These operations provide the means to add,
- subtract, multiply and divide complex numbers along with other
- complex number functions similar to the real number functions found in
- java.math.BigDecimal
:
-
- Complex
instances can be converted to and from strings
- using the
- ComplexFormat class.
- ComplexFormat
is a java.text.Format
- extension and, as such, is used like other formatting objects (e.g.
- java.text.SimpleDateFormat
):
-
- java.text.NumberFormat
instances can be used to construct
- a ComplexFormat
. These number formats control the
- formatting of the real and imaginary values of the complex number:
-
- ComplexFormat
is the text used for the imaginary
- designation. By default, the imaginary notation is "i" but, it can be
- manipulated using the setImaginaryCharacter
method.
- ComplexFormat
. Parse a complex number from a string,
- simply call the parse
method:
-
+ The concept of "complex number" is implemented in
+ Commons Numbers.