Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1;
assert(isequal(your_fcn_name(x),y_correct))
y =
logical
1
|
2 | Pass |
x = 2;
y_correct = [1 1;1 1];
assert(isequal(your_fcn_name(x),y_correct))
y =
2×2 logical array
1 1
1 1
|
3 | Pass |
x = 3;
y_correct = [1 1 1;1 0 1;1 1 1];
assert(isequal(your_fcn_name(x),y_correct))
y =
3×3 logical array
1 1 1
1 0 1
1 1 1
|
4 | Pass |
x = 4;
y_correct = [1 1 1 1
1 0 0 1
1 0 0 1
1 1 1 1];
assert(isequal(your_fcn_name(x),y_correct))
y =
4×4 logical array
1 1 1 1
1 0 0 1
1 0 0 1
1 1 1 1
|
819 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
277 Solvers
351 Solvers
284 Solvers
315 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!