For the known matrix A, matlab provides us with two transpose operations.
A. ‘non conjugate transpose
A ‘conjugate transpose
When a is a real matrix, they are the same
Simply conjugate with: conj ()
Simple transpose: transpose ()
example:
a =
12.0000 0 + 2.0000i 5.0000
0 5.0000 4.0000
>> a’
ans =
12.0000 0
0 – 2.0000i 5.0000
5.0000 4.0000
>> a.’
ans =
12.0000 0
0 + 2.0000i 5.0000
5.0000 4.0000
Read More:
- The sparse matrix of R language is too large to be used as.matrix
- Matlab delete row or col to delete the row or column of the matrix
- The usage of Matlab function downsample
- Matlab — looking for peak function
- Usage of pause function in MATLAB
- The difference of four kinds of integer function (fix floor ceil round) in MATLAB
- How to express ln function in MATLAB?
- Matlab error “Object returned error code of the xlswrite function: 0x800A03EC
- matlab Error Subscript indices must either be real positive integers or logicals.
- Python memoryerror (initializing a large matrix)
- Modification scheme of binary files in dot matrix font library
- Memory error in Python numpy matrix
- Pytorch corresponding point multiplication and matrix multiplication
- How to use matlab xlswrite
- After the successful installation of matlab2018, the opening will show the licensing error: – 8523 solution
- Matlab 2018a cracked the licensing error: – 8523
- Matlab prompt error
- Debugging mode of MATLAB: dbstop if error
- Deep learning: derivation of sigmoid function and loss function
- What are the common clearing commands in MATLAB?