This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
filetext = fileread('mean_matrix.m');
assert(isempty(strfind(filetext, 'mean(')),'mean forbidden')
assert(isempty(strfind(filetext, 'mean (')),'mean forbidden')
|
2 | Pass |
%%
x=1;
y=1;
assert(isequal(mean_matrix(x),y));
|
3 | Fail |
%%
x = [5 4 8;4 7 8;5 7 8];
y=6.2222;
assert(abs(mean_matrix(x)-y)<0.0001);
|
2724 Solvers
198 Solvers
Cell Counting: How Many Draws?
254 Solvers
Magic is simple (for beginners)
1108 Solvers
construct matrix with identical rows
138 Solvers