This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
v = 1:10;
n = 5;
stats_correct = [1 1 1 1 1 1];
stats = move_mad(v, n);
assert(isequal(stats, stats_correct));
|
2 | Pass |
v = logspace(0, 1, 10);
n = 3;
stats_correct = [0.292 0.377 0.486 0.628 0.811 1.048 1.353 1.748];
stats = move_mad(v, n);
assert(isequal(stats, stats_correct));
|
3 | Pass |
rng('default');
v = randn(1000, 1);
n = 990;
stats_correct = 0.660*ones(1, 11);
stats = move_mad(v, n);
assert(isequal(stats, stats_correct));
|
2197 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
Generate a vector like 1,2,2,3,3,3,4,4,4,4
3620 Solvers
253 Solvers
Create the following sequence : 0 1 1 4 9 25 64 169 ...
64 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!