I believe the test cases are wrong, I could not prove that a matrix from randn(3) is orthogonal.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = orth(randn(3));
y_correct = true;
assert(isequal(isOrthogonal(x),y_correct))
|
2 | Pass |
x = orth(randn(4));
y_correct = true;
assert(isequal(isOrthogonal(x),y_correct))
|
3 | Pass |
x = orth(randn(5));
y_correct = true;
assert(isequal(isOrthogonal(x),y_correct))
|
4 | Pass |
x=sqrt([3,1;1,1]);
y_correct = false;
assert(isequal(isOrthogonal(x),y_correct))
|
5 | Pass |
x = magic(6);
y_correct = false;
assert(isequal(isOrthogonal(x),y_correct))
|
6 | Pass |
x = randn(2)+1;
y_correct = false;
assert(isequal(isOrthogonal(x),y_correct))
|
1091 Solvers
900 Solvers
Given two strings, find the maximum overlap
461 Solvers
537 Solvers
701 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!