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))
|
2240 Solvers
Number of 1s in the Binary Representation of a Number
356 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
511 Solvers
583 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!