
What is the difference between A' vs A.' ?
6 ビュー (過去 30 日間)
古いコメントを表示
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.
0 件のコメント
the cyclist
2015 年 9 月 17 日
編集済み: the cyclist
2015 年 9 月 17 日
Try it with a complex matrix, and you'll see.
0 件のコメント
参考
カテゴリ
Help Center および 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!