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))
ans =
[]
|
2 | Pass |
d = 1;
n=1;
m=1;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
ans =
[]
|
3 | Pass |
d = 1;
n=3;
m=4;
y_correct = 0.5;
assert(isequal(your_fcn_name(d,n,m),y_correct))
ans =
[]
|
4 | Pass |
d = 2;
n=1;
m=1;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
ans =
[]
|
5 | Pass |
d = 0.5;
n=2;
m=3;
y_correct = 0.625;
assert(isequal(your_fcn_name(d,n,m),y_correct))
ans =
[]
|
6 | Pass |
d = 2;
n=1;
m=4;
y_correct = 0;
assert(isequal(your_fcn_name(d,n,m),y_correct))
ans =
[]
|
199 Solvers
Put two time series onto the same time basis
174 Solvers
Volume of a sphere given its surface area
117 Solvers
283 Solvers
2315 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!