Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1:10;
y_correct = 3.4142;
assert(abs(h_mean(x)-y_correct)<0.0001)
|
2 | Pass |
x = 1:5;
y_correct = 2.1898;
assert(abs(h_mean(x)-y_correct)<0.0001)
|
3 | Pass |
x = 10;
y_correct = 10;
assert(abs(h_mean(x)-y_correct)<0.0001)
|
4 | Pass |
x = 1:50;
y_correct = 11.1131;
assert(abs(h_mean(x)-y_correct)<0.0001)
|
5 | Pass |
x = 1:100;
y_correct = 19.2776;
assert(abs(h_mean(x)-y_correct)<0.0001)
|
1223 Solvers
495 Solvers
147 Solvers
The sum of the numbers in the vector
426 Solvers
Matlab Basics II - Create a vector with a repeated entry
182 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!