transpose method

transpose

Performs transposing of matrix.

Returns

Transposed matrix.

def transpose(self, initial_matrix):
    ...
ParameterTypeDescription
initial_matrixTransformationMatrixMatrix to transpose.

See Also