This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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 3n+1 sequence for n
6167 Solvers
2261 Solvers
1763 Solvers
498 Solvers
1821 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!