Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [1 2 3 4 5 6 7 8 9];
t = [9 8 7 6 5 4 3 1 2];
y_correct = [9 8 7 6 5 4 3 1 2];
assert(isequal(your_fcn_name(x,t),y_correct))
ans =
9 8 7 6 5 4 3 1 2
|
2 | Pass |
%%
x = [1 2 1 4 0 -5 15];
t = [7 2 3 4 5 6 1];
y_correct = [15 2 1 4 0 -5 1];
assert(isequal(your_fcn_name(x,t),y_correct))
ans =
15 2 1 4 0 -5 1
|
2401 Solvers
613 Solvers
382 Solvers
379 Solvers
266 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!