ImSub
Description
Perform subtraction between two complexes.
Syntax
complex ImSub(complex cY1, complex cY2)
Parameters
cY1
- The minuend.
cY2
- The subtrahend.
Return
Return the difference of two specified complexes.
Example
imSub(3+4i, 1+2i) = ; // 2+2i complex c1 = 1+1i; complex c2 = 4+1i; complex c3; c3 = imSub(c1, c2); c3 = ; // -3
/math-05928a3e1ca6be59de1b7a39aa7e06c4.png)