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))
|
3115 Solvers
3609 Solvers
163 Solvers
163 Solvers
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
298 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!