Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
m=[0 0 1;1 1 0;1 0 1;2 0 0];
y_correct = false;
assert(isequal(iscoplanar(m),y_correct))
tf =
0
|
2 | Pass |
m=[0 0 1;1 1 0;1 0 1;2 1 2];
y_correct = false;
assert(isequal(iscoplanar(m),y_correct))
tf =
0
|
3 | Pass |
m=[0 0 1;1 1 0;1 0 1;0 1 0];
y_correct = true;
assert(isequal(iscoplanar(m),y_correct))
tf =
1
|
4 | Pass |
m=[0 0 1;1 1 0;1 0 1;2 1 0];
y_correct = true;
assert(isequal(iscoplanar(m),y_correct))
tf =
1
|
5 | Pass |
m=[0 0 1;1 1 0;1 0 1;2 0 1];
y_correct = true;
assert(isequal(iscoplanar(m),y_correct))
tf =
1
|
6 | Pass |
m=[2 0 0;1 2 0;2 1 1;2 2 2];
y_correct = true;
assert(isequal(iscoplanar(m),y_correct))
tf =
1
|
7 | Pass |
m=[2 0 0;1 2 0;2 1 1;2 1 2];
y_correct = false;
assert(isequal(iscoplanar(m),y_correct))
tf =
0
|
8 | Pass |
m=[0 0 0;1 0 0;0 1 0;0 0 1];
y_correct = false;
assert(isequal(iscoplanar(m),y_correct))
tf =
0
|
9 | Pass |
m=[0 0 0;1 0 0;0 1 0;1 1 1];
y_correct = false;
assert(isequal(iscoplanar(m),y_correct))
tf =
0
|
10 | Pass |
m=[0 0 0;1 0 0;0 1 0;1 1 0];
y_correct = true;
assert(isequal(iscoplanar(m),y_correct))
tf =
1
|
11 | Pass |
m=[0 0 0;0 0 1;1 1 1;1 1 0];
y_correct = true;
assert(isequal(iscoplanar(m),y_correct))
%0 0 0
%1 0 0
%0 1 0
%0 0 1
%1 1 1
tf =
1
|
3894 Solvers
115 Solvers
Sum of first n terms of a harmonic progression
257 Solvers
546 Solvers
60 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!