This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3 4 5]
n = 4
y_correct = [1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4 5 5 5 5]
assert(isequal(your_fcn_name(x,n),y_correct))
x =
1 2 3 4 5
n =
4
y_correct =
Columns 1 through 16
1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4
Columns 17 through 20
5 5 5 5
|
831 Solvers
753 Solvers
495 Solvers
364 Solvers
275 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!