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')
assert(isempty(strfind(filetext, '...')),'... forbidden')
|
2 | Pass |
x=1;
y=1;
assert(isequal(mean_matrix(x),y));
|
3 | Pass |
x = [5 4 8;4 7 8;5 7 8];
y=6.2222;
assert(abs(mean_matrix(x)-y)<0.0001);
|
9831 Solvers
1398 Solvers
530 Solvers
Create a two dimensional zero matrix
355 Solvers
Add one raw in given matrix as shown in example
122 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!