What is the difference between A' vs A.' ?
이전 댓글 표시
First one is transpose of matrix A.
I don't see any difference between A' and A.' since I keep getting same thing
댓글 수: 1
Zihan Qiao
2020년 5월 21일
편집: Zihan Qiao
2020년 5월 21일

I believe this screenshot can answer your question.
A’ will do the complex conjugate of the value additionally;
While A.' will only be the transpose.
답변 (2개)
Walter Roberson
2015년 9월 17일
>> A = 1+2i
A =
1 + 2i
>> A'
ans =
1 - 2i
>> A.'
ans =
1 + 2i
Notice that A' gave the complex conjugate of the value as well as doing the transpose.
the cyclist
2015년 9월 17일
편집: the cyclist
2015년 9월 17일
1 개 추천
Try it with a complex matrix, and you'll see.
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!