Here\'s two ways to enter the command in Matlab. I don\'t think there\'s any difference between them. However, the result is really different. So I wonder what\'s I missed i
Use B = [(5.7955+1.5529i) 0].' which is actually element-wise transpose and not B = [(5.7955+1.5529i) 0]' which is conjugate transpose.
B = [(5.7955+1.5529i) 0].'
B = [(5.7955+1.5529i) 0]'
One can also use an explicit call to transpose command - B = transpose([(5.7955+1.5529i) 0])
B = transpose([(5.7955+1.5529i) 0])