Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 3];
y_correct = [1.5 2.5];
assert(isequal(two_mean(x),y_correct))
l =
3
y =
1.5000 2.5000
|
2 | Pass |
x = [10 0 0 0 100];
y_correct = [5 0 0 50];
assert(isequal(two_mean(x),y_correct))
l =
5
y =
5 0 0 50
|
3 | Pass |
x = [1 2 4];
y_correct = [1.5 3];
assert(isequal(two_mean(x),y_correct))
l =
3
y =
1.5000 3.0000
|
Project Euler: Problem 1, Multiples of 3 and 5
1492 Solvers
502 Solvers
Getting the indices from a vector
3210 Solvers
Create a vector whose elements depend on the previous element
391 Solvers
Flip the vector from right to left
2670 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!