transpose
Returns vector or matrix transpose: .' operator.
📝Syntax
C= transpose(A)
C = A .'
📥Input Arguments
Parameter Description
A a variable
📤Output Arguments
Parameter Description
C result: transpose of A.
📄Description

C = transpose(A) returns the transpose of A.

💡Examples
A = 3
B = A.'
A = -i
B = A.'
 A = sparse(eye(3, 4) * i)
B = A.'
🔗See Also
ctranspose
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub