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
|
Given an unsigned integer x, find the largest y by rearranging the bits in x
781 Solvers
190 Solvers
Back to basics 9 - Indexed References
392 Solvers
205 Solvers
There are 10 types of people in the world
311 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!