This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = {'45.5','1:04.8','55.4'};
y_correct = '55.2';
z_correct = '9.7'
[a,b]=mean_std(x);
assert(isequal(a,y_correct)&isequal(b,z_correct))
z_correct =
9.7
ans =
1 1 1 1
|
2 | Pass |
%%
x = {'1:38.4','2:12.9','2:00.6'};
y_correct = '1:57.3';
z_correct = '17.5';
[a,b]=mean_std(x);
assert(isequal(a,y_correct)&isequal(b,z_correct))
|
5703 Solvers
1092 Solvers
1263 Solvers
The sum of the numbers in the vector
426 Solvers
5463 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!