Difference between A' and A.'

69 vues (au cours des 30 derniers jours)
Rahul
Rahul le 27 Mai 2012
Modifié(e) : dinosaur le 20 Oct 2015
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 commentaire
dinosaur
dinosaur le 20 Oct 2015
Modifié(e) : dinosaur le 20 Oct 2015
A.' is the transpose, and the A' is complex conjugate transpose. It only makes a difference if you have complex numbers in the matrix.

Connectez-vous pour commenter.

Réponse acceptée

Oleg Komarov
Oleg Komarov le 27 Mai 2012
Matters in complex doamin, compare:
An example:
A = rand(10);
isequal(A',A.') % 1
A = A*i;
isequal(A',A.') % 0
  3 commentaires
Oleg Komarov
Oleg Komarov le 27 Mai 2012
Yes.
Rahul
Rahul le 27 Mai 2012
thanks Oleg..

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Blue dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by