(i) Write an algorithm called matrixTranspose that takes as input an n x n matrix A and outputs the transpose of A, deno
Posted: Tue Jul 12, 2022 8:15 am
(i) Write an algorithm called matrixTranspose that takes as input an n x n matrix A and outputs the transpose of A, denoted by AT. It then determines if A = AT. It returns True if A = AT and false otherwise. (ii) Determine the computational complexity of your algorithm.