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 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by