transpose

description:

B = transpose(A) is called for the syntax A.' and means symbolic matrix transpose.

arguments:

A is a matrix of NCpolys

output:

matrix of NCpolys

possible usage:

A.', transpose(A)

example:

>> A=[x*y x+y;y*x x;y 1-x*y*x]

A = x*y       x+y

    y*x         x

      y   1-x*y*x

>> A.'

ans = x*y   y*x         y

      x+y     x   1-x*y*x