comconj()

Descpription:

Calculate a complex number’s complex conjugate.

Syntax:

A.comconj()  

Note:

The external library function (See External Library Guide) returns the complex conjugate of each member of the specified sequence of complex numbers. For two complex numbers, one is the other’s complex conjugate if they have same real parts and their imaginary parts are opposite numbers. If a complex number’s imaginary part is 0, its complex conjugate’s imaginary part is also 0.

Parameter:

A

A sequence of complex numbers

Return value:

Sequence

Example:

 

A

 

1

=[[1,2],[3,4],[5,6],[7,8],[5,0],[-5,0],[-8,-9],[-0.3,5],[3,-4],[0,0],[0,3],[0,-2]]

 

2

=A1.comconj()