Given a square matrix, a, determine whether it is orthogonal.
INPUT: a, a n x n matrix
OUTPUT: true or false
perhaps you could these cases to avoid some non-general solutions... TEST1: x=sqrtm([2,1;1,1]); y_correct=false; TEST2: x=randn(3); y_correct=false;
Thanks for the suggestions. I have implemented both of the tests. Cheers.
I believe the test cases are wrong, I could not prove that a matrix from randn(3) is orthogonal.
649 Solvers
276 Solvers
Determine if a Given Number is a Triangle Number
286 Solvers
397 Solvers
165 Solvers