transpose

Navigation:  Language Reference > Functions > Matrix >

transpose

Previous pageReturn to chapter overviewNext page

Syntax

Y = transpose(A);

Description

Returns the transpose of the matrix A.

Examples

A = [1,2;3,ramp(1)];

Y = transpose(A);

Limitations

With the A matrix of size[n,m] , Y must have the size [m,n].