필터 지우기
필터 지우기

Difference between A' and A.'

조회 수: 62 (최근 30일)
Rahul
Rahul 2012년 5월 27일
편집: dinosaur 2015년 10월 20일
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일
Matters in complex doamin, compare:
An example:
A = rand(10);
isequal(A',A.') % 1
A = A*i;
isequal(A',A.') % 0
  댓글 수: 3
Oleg Komarov
Oleg Komarov 2012년 5월 27일
Yes.
Rahul
Rahul 2012년 5월 27일
thanks Oleg..

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by