<< mps_trace mpscilab mps_zeros >>

mpscilab >> mpscilab > mps_transpose

mps_transpose

Matrix transposition.

Calling Sequence

mps_transpose( rop, op )
rop = mps_transpose( op )

Overloaded usage:

rop = op'

Arguments

rop, op

Multi-precision matrix

Description

Performs a matrix transposition.

Usage notes

It's currently unsafe to use the in-place transposition by calling mps_transpose() with the same argument for output and input.

Examples

// Standard usage.
A = [ 1 2 3;
      4 5 6;
      7 8 9 ]
mpsA = mps_init2(A,100)
rop = mps_trace(mpsA)

See Also

<< mps_trace mpscilab mps_zeros >>