Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
p1=[1 2 3];
p2=[2 4 6];
y_correct = true;
assert(isequal(isparallel(p1,p2),y_correct))
y =
logical
1
|
2 | Pass |
p1=[1 2 3];
p2=[2 5 6];
y_correct = false;
assert(isequal(isparallel(p1,p2),y_correct))
y =
logical
0
|
3 | Pass |
p1=[666 911];
p2=[0.1 0.1*911/666];
y_correct = true;
assert(isequal(isparallel(p1,p2),y_correct))
y =
logical
1
|
4 | Pass |
p1=[1 2 3];
p2=[0 0 0];
y_correct = false;
assert(isequal(isparallel(p1,p2),y_correct))
y =
logical
0
|
3113 Solvers
337 Solvers
412 Solvers
07 - Common functions and indexing 1
338 Solvers
583 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!