Back to functions

transpose


transpose

Transposes a matrix.

Usage: nerdamer("transpose(M)")


Parameters

expression M a matrix from which the element is being retrieved.

Returns

Matrix

EXAMPLES:
nerdamer.setVar('M', 'matrix([x,y],[a,b])');
console.log(nerdamer('transpose(M)').toString());
OUTPUT:
Back to functions