MATLAB: (1/2) – (3-j4)/(5-j8)

engineeringmaths

I need to get the answer to this in the form x+jy

Best Answer

Calculating it is straightforward. Multiply the numerator and denominator of the complex part of the expression by the complex conjugate of the denominator:
fc = (3-4j)*(5+8j)/((5-8j)*(5+8j))
f = 1/2 - fc
Only the real part of ‘f’ is then subtracted from ‘1/2’.