Given a square matrix, a, determine whether it is orthogonal.
INPUT: a, a n x n matrix
OUTPUT: true or false
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers410
Suggested Problems
-
Select every other element of a vector
37222 Solvers
-
Return a list sorted by number of occurrences
2901 Solvers
-
"Low : High - Low : High - Turn around " -- Create a subindices vector
590 Solvers
-
Sum the numbers on the main diagonal
620 Solvers
-
581 Solvers
More from this Author16
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
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.
Very leetcode style