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
|
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))
|
1261 Solvers
519 Solvers
3967 Solvers
284 Solvers
57 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!