Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = ones(3);
assert(isequal(surrounded(x),y_correct))
|
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))
|
3 | Pass |
x = ones(3,4);
y_correct = ones(5,6);
assert(isequal(surrounded(x),y_correct))
|
4 | Pass |
x = [0];
y_correct = ones(3); y_correct(2,2) = 0;
assert(isequal(surrounded(x),y_correct))
|
5 | Pass |
x = reshape(1:9,[3,3]);
y_correct = [1 1 1 1 1; 1 1 2 3 1; ...
1 4 5 6 1; 1 7 8 9 1; 1 1 1 1 1]';
assert(isequal(surrounded(x),y_correct))
|
How to find the position of an element in a vector without using the find function
2320 Solvers
395 Solvers
Arrange Vector in descending order
1800 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
209 Solvers
261 Solvers