This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = ones(3);
assert(isequal(surrounded(x),y_correct))
B =
1 1 1
1 1 1
1 1 1
|
2 | Pass |
%%
x = [3 3 3;3 3 3];
y_correct = [1 1 1 1 1;1 3 3 3 1; 1 3 3 3 1; 1 1 1 1 1];
assert(isequal(surrounded(x),y_correct))
B =
1 1 1 1 1
1 3 3 3 1
1 3 3 3 1
1 1 1 1 1
|
900 Solvers
502 Solvers
Convert a vector into a number
503 Solvers
Make a run-length companion vector
512 Solvers
413 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!