This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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))
y =
0.2500
|
2 | Pass |
%%
d = 1;
n=1;
m=1;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
y =
0
|
3 | Pass |
%%
d = 1;
n=3;
m=4;
y_correct = 0.5;
assert(isequal(your_fcn_name(d,n,m),y_correct))
y =
0.5000
|
4 | Pass |
%%
d = 2;
n=1;
m=1;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
y =
0
|
5 | Pass |
%%
d = 0.5;
n=2;
m=3;
y_correct = 0.625;
assert(isequal(your_fcn_name(d,n,m),y_correct))
y =
0.6250
|
6 | Pass |
%%
d = 2;
n=1;
m=4;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
y =
0
|
How to find the position of an element in a vector without using the find function
2477 Solvers
337 Solvers
Omit columns averages from a matrix
527 Solvers
348 Solvers
669 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!