Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
m = 7;
n = 10;
y_correct = 26;
assert(isequal(sum(sum(your_fcn_name(m,n))),y_correct))
|
2 | Pass |
%%
m = 5;
n = 10;
y_correct = 17;
assert(isequal(sum(sum(your_fcn_name(m,n))),y_correct))
|
3 | Pass |
%%
m = 9;
n = 6;
y_correct = 19;
assert(isequal(sum(sum(your_fcn_name(m,n))),y_correct))
|
27999 Solvers
15299 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
199 Solvers
Reverse the elements of an array
687 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!