Copyright (c) 1994 J. Adams, W. Brainerd, J. Martin, and B. Smith. All rights reserved. This file may not be copied without permission of the authors.
The complex type is used for data that are approximations to the mathematical complex numbers. A complex number consists of a real part and an imaginary part and is often represented as a + bi in mathematical terms, where a is the real part and b is the imaginary part.
COMPLEX CUT, CTEMP, X(10) ! Complex type declaration
COMPLEX (KIND=LONG) :: CTC ! CTC has kind parameter LONG REAL XX, Y CTC = CMPLX (XX, Y, KIND = LONG)
COMPLEX (SELECTED_REAL_KIND (6,32)) NORTH ! NORTH is a complex variable or function ! whose parts have at least 6 decimal digits of precision ! and decimal range of 10-32 to 1032.
Examples of complex constants are:
(1.0,2.0) A complex constant: 1.0 is the real part; 2.0 the imaginary part. (4, -.4) Integer values are converted to real. (2, 3.E1) One part is integer and the other is real. (1.0_LONG, 2.0_LONG) The complex constant has the kind LONG.
Expressions
Implicit Typing
Real Type and Constants
CMPLX
EPSILON
KIND
MAXEXPONENT
MINEXPONENT
RADIX
SELECTED_REAL_KIND
ISO 1539 : 1991, Fortran Standard, 4.3.1.3, 5.1.1.4
Fortran 90 Handbook, 4.3.3, 5.1.4
Programmer's Guide to Fortran 90, 1.2.3,1.3.1
A COMPLEX type declaration statement is:
COMPLEX
[ (
[ KIND =
] kind-parameter )
] &
[ ,
attribute-list ::
] entity-list
A complex constant is:
(
real-part ,
imaginary-part )
The real part is one of:
signed-integer-literal-constant
signed-real-literal-constant
The imaginary part is one of:
signed-integer-literal-constant
signed-real-literal-constant