are you kidding ? :3 Great IQ !!
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))
|
3892 Solvers
1763 Solvers
Arrange Vector in descending order
4075 Solvers
Back to basics 9 - Indexed References
392 Solvers
Back to basics 13 - Input variables
233 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!