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

dinosaur
dinosaur 2015년 10월 20일
편집: dinosaur 2015년 10월 20일
A.' is the transpose, and the A' is complex conjugate transpose. It only makes a difference if you have complex numbers in the matrix.

댓글을 달려면 로그인하십시오.

 채택된 답변

Oleg Komarov
Oleg Komarov 2012년 5월 27일

2 개 추천

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

댓글 수: 3

Rahul
Rahul 2012년 5월 27일
Does that mean they are the same for real number matrices and arrays?
Oleg Komarov
Oleg Komarov 2012년 5월 27일
Yes.
Rahul
Rahul 2012년 5월 27일
thanks Oleg..

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Blue에 대해 자세히 알아보기

태그

질문:

2012년 5월 27일

편집:

2015년 10월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by