www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/ConjugateTransposeofRealMatrixExample.m

    %% Conjugate Transpose of Real Matrix  

%% 
% Create a 4-by-2 matrix. 
A = [2 1; 9 7; 2 8; 3 5]  

%% 
% Find the conjugate transpose of |A|. 
B = A' 

%%
% The result is a 2-by-4 matrix. |B| has the same elements as |A|, but the
% row and column index for each element are interchanged. When no complex
% elements are present, |A'| produces the same result as |A.'|.