
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 个评论
另请参阅
类别
在 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!