How to do the hermatin function in matlab?

1 次查看(过去 30 天)
I have a matrix of 10x5.I want a complex conjugate transpose matrix with the size of 10x5.can you please give the code for that?
  2 个评论
Matt J
Matt J 2018-2-9
If you transpose (with or without conjugation) a matrix of size 10x5 shouldn't the result be 5x10?

请先登录,再进行评论。

采纳的回答

Birdman
Birdman 2018-2-9
Use conj function.
a=ones(10,5)*complex(rand(5),rand(5))
conj(a)

更多回答(1 个)

Abhishek Ballaney
https://in.mathworks.com/help/matlab/ref/ctranspose.html

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by