フィルターのクリア

Difference between A' and A.'

62 ビュー (過去 30 日間)
Rahul
Rahul 2012 年 5 月 27 日
編集済み: dinosaur 2015 年 10 月 20 日
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 件のコメント
dinosaur
dinosaur 2015 年 10 月 20 日
編集済み: dinosaur 2015 年 10 月 20 日
A.' is the transpose, and the A' is complex conjugate transpose. It only makes a difference if you have complex numbers in the matrix.

サインインしてコメントする。

採用された回答

Oleg Komarov
Oleg Komarov 2012 年 5 月 27 日
Matters in complex doamin, compare:
An example:
A = rand(10);
isequal(A',A.') % 1
A = A*i;
isequal(A',A.') % 0
  3 件のコメント
Oleg Komarov
Oleg Komarov 2012 年 5 月 27 日
Yes.
Rahul
Rahul 2012 年 5 月 27 日
thanks Oleg..

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by