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 comentario

dinosaur
dinosaur el 20 de Oct. de 2015
Editada: dinosaur el 20 de Oct. de 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.

Iniciar sesión para comentar.

 Respuesta aceptada

Oleg Komarov
Oleg Komarov el 27 de Mayo de 2012

2 votos

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

3 comentarios

Rahul
Rahul el 27 de Mayo de 2012
Does that mean they are the same for real number matrices and arrays?
Oleg Komarov
Oleg Komarov el 27 de Mayo de 2012
Yes.
Rahul
Rahul el 27 de Mayo de 2012
thanks Oleg..

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 27 de Mayo de 2012

Editada:

el 20 de Oct. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by