Difference between A' and A.'
Mostra commenti meno recenti
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
A.' is the transpose, and the A' is complex conjugate transpose. It only makes a difference if you have complex numbers in the matrix.
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Blue in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!