Transpose of a matrix
5 次查看(过去 30 天)
显示 更早的评论
AT, AijT= Aji. The jith entry of A is the ijth entry of i.
For example,
A =
1 2
3 4
>> A'
ans =
1 3
2 4
When is A = AT? That is, when is the transpose of a matrix equal to itself?
2 个评论
回答(1 个)
Walter Roberson
2014-3-11
A matrix is its own transpose when it is symmetric around the main diagonal. In the case of the 2 x 2 matrix, A12 would have to equal A21
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!