Complex creation

 

Using complex(), a sequence of complex numbers can be created in two ways, either by entering the real and imaginary parts of a complex number, such as A3, or by using a paired sequence, such as A5.


A

1

=[1,3,5,6]

2

=[2,4,6,8]

3

=complex(A1,A2)

4

=[[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]]

5

=complex(A4)

A3 Create a complex sequence with A1 as the real part and A2 as the imaginary part

..

A5 Create a complex sequence by using the paired sequence A4. For the convenience, entering A4 directly in most other complex functions can be automatically converted to complex number without using complex().

..