Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
A=[3,5,7,90,1;5,1,-1,0,2;1,2,3,4,70;23,1,2,3,5];
B= 23.75;
tolerance = 1e-2 ;
assert(abs(adjacent_averaging(A)-B)<tolerance);
|
2 | Pass |
%%
A=[1,1,0,1,1;2,2,2,2,2;3,3,3,3,3;4,4,4,4,4];
B= 1.3333;
tolerance = 1e-2 ;
assert(abs(adjacent_averaging(A)-B)<tolerance);
|
3 | Pass |
%%
A=[3,3,3,90,2;5,3,-1,6,4;2,0,5,6,80;12,9,12,13,15];
B= 4.75;
tolerance = 1e-2 ;
assert(abs(adjacent_averaging(A)-B)<tolerance);
|
Return elements unique to either input
550 Solvers
Return the first and last character of a string
3458 Solvers
Find Index of maximum Value and maximum Value of a vector
145 Solvers
284 Solvers
163 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!