IN MATLAB
Calculate the transpose (and the complex conjugate) of the matrix Z = [1+2j, 3+4j; 5+6j, 7+9j].
MATLAB Code for finding conjugate and transpose of a given matrix:
Z = [1+2j, 3+4j; 5+6j, 7+9j]
ZC=conj(Z) %conjugate of matric
ZT=transpose(ZC) %transpose gives final result
Get Answers For Free
Most questions answered within 1 hours.