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 = [3 5 10 8 6 12 9 7 5 2 4 11 16];
y_correct = 4;
assert(isequal(my_std_deviation(x),y_correct));
y =
4
|
2 | Pass |
x = [];
y_correct = -1;
assert(isequal(my_std_deviation(x),y_correct));
|
3 | Pass |
x = [1 1];
y_correct = 0;
assert(isequal(my_std_deviation(x),y_correct));
y =
0
|
4 | Pass |
x = [1 2 3 4 5 6 7 8 9 10];
y_correct = 3;
assert(isequal(my_std_deviation(x),y_correct));
y =
3
|
272 Solvers
Sum all integers from 1 to 2^n
8412 Solvers
Who knows the last digit of pi?
557 Solvers
Make a random, non-repeating vector.
2795 Solvers
345 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!