Difference between A' and A.'
    70 views (last 30 days)
  
       Show older comments
    
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
Accepted Answer
  Oleg Komarov
      
      
 on 27 May 2012
        Matters in complex doamin, compare:
- A' : ctranpose()
- A.': tranpose()
An example:
A = rand(10);
isequal(A',A.') % 1
A = A*i;
isequal(A',A.') % 0
3 Comments
More Answers (0)
See Also
Categories
				Find more on Blue in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
