Difference between A' and A.'
168 ビュー (過去 30 日間)
古いコメントを表示
What is the difference between A' and A.'? Bot seem to be the same..
>> A=1:4
A =
1 2 3 4
>> A'
ans =
1
2
3
4
>> A.'
ans =
1
2
3
4
1 件のコメント
採用された回答
Oleg Komarov
2012 年 5 月 27 日
Matters in complex doamin, compare:
- A' : ctranpose()
- A.': tranpose()
An example:
A = rand(10);
isequal(A',A.') % 1
A = A*i;
isequal(A',A.') % 0
3 件のコメント
その他の回答 (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!