This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
d = 1;
n=2;
m=2;
y_correct = 0.25;
assert(isequal(your_fcn_name(d,n,m),y_correct))
|
2 | Pass |
%%
d = 1;
n=1;
m=1;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
|
3 | Pass |
%%
d = 1;
n=3;
m=4;
y_correct = 0.5;
assert(isequal(your_fcn_name(d,n,m),y_correct))
|
4 | Pass |
%%
d = 2;
n=1;
m=1;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
|
5 | Pass |
%%
d = 0.5;
n=2;
m=3;
y_correct = 0.625;
assert(isequal(your_fcn_name(d,n,m),y_correct))
|
3115 Solvers
Find the alphabetic word product
2322 Solvers
404 Solvers
Back to basics 22 - Rotate a matrix
763 Solvers
Remove element(s) from cell array
373 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!