
What is the difference between A' vs A.' ?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
First one is transpose of matrix A.
I don't see any difference between A' and A.' since I keep getting same thing
1 comentario
Zihan Qiao
el 21 de Mayo de 2020
Editada: Zihan Qiao
el 21 de Mayo de 2020

I believe this screenshot can answer your question.
A’ will do the complex conjugate of the value additionally;
While A.' will only be the transpose.
Respuestas (2)
Walter Roberson
el 17 de Sept. de 2015
>> A = 1+2i
A =
1 + 2i
>> A'
ans =
1 - 2i
>> A.'
ans =
1 + 2i
Notice that A' gave the complex conjugate of the value as well as doing the transpose.
0 comentarios
the cyclist
el 17 de Sept. de 2015
Editada: the cyclist
el 17 de Sept. de 2015
Try it with a complex matrix, and you'll see.
0 comentarios
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!