Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
Triangle = [0, 0; 1, 0; 1, 1]; Points = [0, 0.5]
y_correct = 0;
assert(isequal(your_fcn_name(Points,Triangle),y_correct))
Points =
0 0.5000
|
2 | Pass |
Triangle = [0, 0; 1, 0; 1, 1]; Points = [0.8, 0.5]
y_correct = 1;
assert(isequal(your_fcn_name(Points,Triangle),y_correct))
Points =
0.8000 0.5000
|
3 | Pass |
Triangle = [0.8147, 0.9134; 0.9058, 0.6324; 0.1270, 0.0975];
Points = [0.8, 0.7; 0.9, 0.4]
y_correct = [1 0];
assert(isequal(your_fcn_name(Points,Triangle),y_correct))
Points =
0.8000 0.7000
0.9000 0.4000
|
Return the largest number that is adjacent to a zero
3750 Solvers
Find the alphabetic word product
2321 Solvers
Increment a number, given its digits
562 Solvers
Return elements unique to either input
550 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!