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))
|
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))
|
306 Solvers
364 Solvers
07 - Common functions and indexing 2
316 Solvers
126 Solvers
113 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!