ImProduct-func
Perform the product (multiplication) operation of two complexes.
complex ImProduct(complex cY1, complex cY2)
cY1
cY2
Return the product of two complexes.
imProduct(3+4i, 1+2i) = ; // -5+10i complex c1 = 1+1i; complex c2 = 4+1i; complex c3; c3 = imProduct(c1, c2); c3 = ; // 3+5i
ImDiv