What's the difference between two way to input Matlab Complex Matrices

前端 未结 1 1506
旧巷少年郎
旧巷少年郎 2020-12-21 14:19

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

相关标签:
1条回答
  • 2020-12-21 14:32

    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.

    One can also use an explicit call to transpose command - B = transpose([(5.7955+1.5529i) 0])

    0 讨论(0)
提交回复
热议问题