CONJG(3F) CONJG(3F)
conjg, dconjg, qconjg - FORTRAN complex conjugate intrinsic function
complex cx1, cx2
double complex dx1, dx2
complex*32 qx1, qx2
cx2 = conjg(cx1)
dx2 = dconjg(dx1)
qx2 = qconjg(qx1)
conjg returns the complex conjugate of its complex argument. dconjg
returns the double-complex conjugate of its double-complex argument.
qconjg returns the complex*32 conjugate of its complex*32 argument.
Page 1
CONJG(3M) Last changed: 1-6-98
CONJG - Computes conjugate of a complex number
CONJG ([Z=]z])
UNICOS and UNICOS/mk systems
Fortran 90
CONJG returns the complex conjugate of a complex number. CONJG is an
elemental function for the CF90 compiler.
This function evaluates y = x - ix .
r i
Argument Range 2450
|x |, |x | < infinity (infinity is approximately 10 )
r i
308
On UNICOS/mk systems, infinity is approximately 10
The name of this intrinsic can be passed as an argument.
The following program gives RESULT=(3.0,-4.0):
PROGRAM CONTEST
COMPLEX ARG, RESULT
ARG=(3.0,4.0)
RESULT=CONJG(ARG)
PRINT *,RESULT
STOP
END
Intrinsic Procedures Reference Manual, publication SR-2138, for the
printed version of this man page.
CONJG(3M) Last changed: 1-6-98
CONJG - Computes conjugate of a complex number
CONJG ([Z=]z])
UNICOS and UNICOS/mk systems
Fortran 90
CONJG returns the complex conjugate of a complex number. CONJG is an
elemental function for the CF90 compiler.
This function evaluates y = x - ix .
r i
Argument Range 2450
|x |, |x | < infinity (infinity is approximately 10 )
r i
308
On UNICOS/mk systems, infinity is approximately 10
The name of this intrinsic can be passed as an argument.
The following program gives RESULT=(3.0,-4.0):
PROGRAM CONTEST
COMPLEX ARG, RESULT
ARG=(3.0,4.0)
RESULT=CONJG(ARG)
PRINT *,RESULT
STOP
END
Intrinsic Procedures Reference Manual, publication SR-2138, for the
printed version of this man page.
[ Back ]
|