transpose

Returns vector or matrix transpose: .' operator.

Syntax

  • C= transpose(A)

  • C = A .'

Input argument

  • A - a variable

Output argument

  • 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.

History

VersionDescription

1.0.0

initial version

Author

Allan CORNET

Last updated