Difference between A' and A.'
67 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Rahul
am 27 Mai 2012
Bearbeitet: dinosaur
am 20 Okt. 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 Kommentar
Akzeptierte Antwort
Oleg Komarov
am 27 Mai 2012
Matters in complex doamin, compare:
- A' : ctranpose()
- A.': tranpose()
An example:
A = rand(10);
isequal(A',A.') % 1
A = A*i;
isequal(A',A.') % 0
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Blue finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!