Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x1 = [1 1 1];
x2 = [2;2;2;];
y_correct = [2 2 2];
assert(isequal(your_fcn_name(x),y_correct))%%
x1 = [4 4 4 4];
x2 = [2;2;2;2];
y_correct = [1/2 1/2 1/2 1/2];
assert(isequal(your_fcn_name(x),y_correct))
|
196 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
262 Solvers
78 Solvers
Duplicate each element of a vector.
455 Solvers
Create an n-by-n null matrix and fill with ones certain positions
140 Solvers