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 |
%%
x = 1;
y_correct = [1 1];
assert(isequal(your_fcn_name(x),y_correct))
B =
0 0
B =
1 0
B =
1 1
|
2 | Pass |
%%
x = [0 -1 1 0 0 0 1 2];
y_correct = [0 0 -1 -1 1 1 0 0 0 0 0 0 1 1 2 2];
assert(isequal(your_fcn_name(x),y_correct))
B =
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
B =
0 0 -1 0 1 0 0 0 0 0 0 0 1 0 2 0
B =
0 0 -1 -1 1 1 0 0 0 0 0 0 1 1 2 2
|
Is my wife right? Now with even more wrong husband
1145 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
209 Solvers
223 Solvers
254 Solvers
359 Solvers