Complex conjugate

 

For two complex numbers, one is the others complex conjugate if they have same real parts and their imaginary parts are opposite numbers. If a complex numbers imaginary part is 0, its complex conjugates imaginary part is also 0.

A.comconj() used to calculate complex conjugate of a complex sequence.


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.comangle()

A2 Return the complex conjugate of each member in A1

..