TransposeTransposition of elements is a general matrix operation. In[1]:=  |
Out[2]//MatrixForm=
|
Transpose swaps elements at specific indices; the result is a sparse array. In[3]:=  |
Out[3]=
|
In[4]:=  |
Out[4]//MatrixForm=
|
If you wish to compute the conjugate transpose of a sparse matrix, you can combine the functions Transpose and Conjugate. In[5]:=  |
Out[7]//MatrixForm=
|
If a matrix is equal to its conjugate transpose, it is said to be hermitian. In[8]:=  |
Out[8]=
|
|