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 日

2 投票

Matters in complex doamin, compare:
An example:
A = rand(10);
isequal(A',A.') % 1
A = A*i;
isequal(A',A.') % 0

3 件のコメント

Rahul
Rahul 2012 年 5 月 27 日
Does that mean they are the same for real number matrices and arrays?
Oleg Komarov
Oleg Komarov 2012 年 5 月 27 日
Yes.
Rahul
Rahul 2012 年 5 月 27 日
thanks Oleg..

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

その他の回答 (0 件)

カテゴリ

タグ

質問済み:

2012 年 5 月 27 日

編集済み:

2015 年 10 月 20 日

Community Treasure Hunt

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

Start Hunting!

Translated by