Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
xv = [0 1 0];
yv = [0 0 1];
X = 0.8;
Y = 0.8;
tf_correct = false;
assert(isequal(inside(xv,yv,X,Y),tf_correct))
|
2 | Pass |
%%
xv = [0 1 1 0];
yv = [0 0 1 1];
X = 0.5;
Y = 0.5;
tf_correct = true;
assert(isequal(inside(xv,yv,X,Y),tf_correct))
|
3 | Pass |
%%
xv = [0 1 1 0];
yv = [0 0 1 1];
X = 0.5;
Y = 0.5;
tf_correct = true;
assert(isequal(inside(xv,yv,X,Y),tf_correct))
|
4 | Pass |
%%
xv = [0 0.25 0.25 0];
yv = [0 0 1 1];
X = 0.5;
Y = 0.5;
tf_correct = false;
assert(isequal(inside(xv,yv,X,Y),tf_correct))
|
5 | Pass |
%%
xv = [0 0.25 0.25 0] + 1000;
yv = [0 0 1 1] + 1000;
X = 1000.1;
Y = 1000.1;
tf_correct = true;
assert(isequal(inside(xv,yv,X,Y),tf_correct))
|
835 Solvers
Project Euler: Problem 6, Natural numbers, squares and sums.
1018 Solvers
Back to basics 18 - justification
176 Solvers
Return elements unique to either input
550 Solvers
Vectorize the digits of an Integer
269 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!