Azzera filtri
Azzera filtri

Difference between A' and A.'

63 visualizzazioni (ultimi 30 giorni)
Rahul
Rahul il 27 Mag 2012
Modificato: dinosaur il 20 Ott 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 Commento
dinosaur
dinosaur il 20 Ott 2015
Modificato: dinosaur il 20 Ott 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.

Accedi per commentare.

Risposta accettata

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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by