Exploits Cody. Use assessFunctionAbsence to thwart (see also Problem 44521).
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
circle = [0, 0, 1]; Points = [0, 0.5]
y_correct = 1;
assert(isequal(your_fcn_name(Points,circle),y_correct))
Points =
0 0.5000
ans =
[]
|
2 | Pass |
circle = [0, 0, 1]; Points = [0, 2]
y_correct = 0;
assert(isequal(your_fcn_name(Points,circle),y_correct))
Points =
0 2
ans =
[]
|
3 | Pass |
circle = [1, 1, 1]; Points = [0, 1; 0, 0]
y_correct = [1; 0];
assert(isequal(your_fcn_name(Points,circle),y_correct))
Points =
0 1
0 0
ans =
[]
|
3074 Solvers
Find the numeric mean of the prime numbers in a matrix.
6781 Solvers
201 Solvers
Arrange vector in ascending order
624 Solvers
Convert from Base 10 to base 5
203 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!