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)
|
Make one big string out of two smaller strings
1148 Solvers
516 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
382 Solvers
Append two matrix as shown below example
181 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!