I want to create a symmetric matrix with complex elements in Matlab using the toeplitz command. However if I provide the toeplitz command with complex entries it returns a Hermitian matrix, that is, the signs of the imaginary parts are reversed above and below the diagonal.
matrix = toeplitz([ 1 + 1i, 2 + 2i])
matrix =
1.0000 + 1.0000i 2.0000 + 2.0000i
2.0000 - 2.0000i 1.0000 + 1.0000i
How can I create a symmetric matrix where the signs of the imaginary parts are the same above and below the diagonal like this:
matrix =
1.0000 + 1.0000i 2.0000 + 2.0000i
2.0000 + 2.0000i 1.0000 + 1.0000i