This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
minV = -10;
maxV = 10;
y_correct = 1;
assert(isequal(round(validAverage(x,minV, maxV),4),y_correct))
|
2 | Fail |
x = [-1 -5.4 14.6 20.9 25.5 -22.4 18 15.5 -33.7 -38.1];
minV = -10;
maxV = 10;
y_correct = -3.2;
assert(isequal(round(validAverage(x,minV, maxV),4),y_correct))
|
3 | Fail |
x=1:100;
minV=20;
maxV=80;
y_correct = 50;
assert(isequal(round(validAverage(x,minV, maxV),4),y_correct))
|
284 Solvers
401 Solvers
489 Solvers
573 Solvers
Replace every 3rd element in a vector with 4
170 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!