Transpose the matrix along its major diagonal
[C++]
void transpose();
This function transposes the matrix, such that:
            
            Thus the number of rows and of columns will also be swapped.new_array.at(i, j) = old_array.at(j, i)
Header: matrix.h