Difference between A' and A.'

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 Comment

dinosaur
dinosaur on 20 Oct 2015
Edited: dinosaur on 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.

Sign in to comment.

 Accepted Answer

Matters in complex doamin, compare:
An example:
A = rand(10);
isequal(A',A.') % 1
A = A*i;
isequal(A',A.') % 0

3 Comments

Does that mean they are the same for real number matrices and arrays?
thanks Oleg..

Sign in to comment.

More Answers (0)

Tags

Asked:

on 27 May 2012

Edited:

on 20 Oct 2015

Community Treasure Hunt

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

Start Hunting!