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
|
1092 Solvers
707 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3619 Solvers
Celsius to Fahrenheit converter
389 Solvers
07 - Common functions and indexing 1
338 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!