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))
|
Remove any row in which a NaN appears
6826 Solvers
308 Solvers
Create an n-by-n null matrix and fill with ones certain positions
268 Solvers
convert matrix to single column
306 Solvers
465 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!