Clear Filters
Clear Filters

How to do the hermatin function in matlab?

2 views (last 30 days)
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 Comments
Matt J
Matt J on 9 Feb 2018
If you transpose (with or without conjugation) a matrix of size 10x5 shouldn't the result be 5x10?

Sign in to comment.

Accepted Answer

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

More Answers (1)

Abhishek Ballaney
Abhishek Ballaney on 9 Feb 2018
https://in.mathworks.com/help/matlab/ref/ctranspose.html

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!