HyperMath

Trans

Trans

Previous topic Next topic No expanding text in this topic  

Trans

Previous topic Next topic JavaScript is required for expanding text JavaScript is required for the print function  

The transpose of a matrix.

Syntax

t = Trans(m)

Argument

Name

Description

 

m

A vector or a matrix.

Outputs

Name

Description

 

t

The transpose.

Example

Find the transpose of a matrix:

 

Syntax

 

T = Trans([1,2,3;4,5,6;7,8,9])

 

Result

 

T = 1 4 7

   2 5 8

   3 6 9

Comments

The operator (`) may also be used by post fixing it.

See Also:

Inv