필터 지우기
필터 지우기

How can i generate hermitian of a matrix in matlab?

조회 수: 259 (최근 30일)
Midhun
Midhun 2016년 4월 21일
댓글: Bruno Luong 2020년 10월 23일
is hermitian of a matrix and complex conjugate transpose are same?..

답변 (2개)

pankaj singh
pankaj singh 2019년 5월 31일
Transpose for real matrices is equivalent to Hermitian (complex conjugate transpose) for complex matrices. Therefore, you can use the same matlab operator to generate the Hermitian for a complex matrix. For example:
x = [1+j; 1-j; 2-j; 1+2j] % random complex matrix
x =
1.0000 + 1.0000i
1.0000 - 1.0000i
2.0000 - 1.0000i
1.0000 + 2.0000i
>> x' % take it's Hermitian
ans =
1.0000 - 1.0000i 1.0000 + 1.0000i 2.0000 + 1.0000i 1.0000 - 2.0000i

Walter Roberson
Walter Roberson 2016년 4월 21일
Hermitian is a property, not something that can be generated. A hermitian matrix is a matrix which is equal to its complex transpose.
If you have a matrix which "should" be hermitian but might not be due to round-off error, then take
newH = (H + H') / 2
  댓글 수: 4
Zaid Ahmad
Zaid Ahmad 2020년 10월 23일
Actually theoretically matrix is hermitian if conjugate of A transpose is A itself. So it is a property. But usually the word hermitian is used as short for hermitian transpose.
Bruno Luong
Bruno Luong 2020년 10월 23일
I only know Hermitian, or conjugate transpose.
Rarely heard "complex transpose" or "hermitian transpose".

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by