Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% test one
x = orth(randn(3));
y_correct = true;
assert(isequal(isOrthogonal(x),y_correct))
ans =
1
|
2 | Pass |
%% test two
x = orth(randn(4));
y_correct = true;
assert(isequal(isOrthogonal(x),y_correct))
ans =
1
|
3 | Pass |
%% test three
x = orth(randn(5));
y_correct = true;
assert(isequal(isOrthogonal(x),y_correct))
ans =
1
|
4 | Pass |
%% test four
x=sqrt([3,1;1,1]);
y_correct = false;
assert(isequal(isOrthogonal(x),y_correct))
ans =
0
|
5 | Pass |
%% test five
x = magic(6);
y_correct = false;
assert(isequal(isOrthogonal(x),y_correct))
ans =
0
|
6 | Pass |
%% test six
x = randn(2)+1;
y_correct = false;
assert(isequal(isOrthogonal(x),y_correct))
ans =
0
|
831 Solvers
Test if two numbers have the same digits
187 Solvers
Sum the elements in either diagonal of a square matrix
178 Solvers
188 Solvers
340 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!