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))
|
3968 Solvers
Make one big string out of two smaller strings
1148 Solvers
158 Solvers
Calculate square and cube of number
248 Solvers
Write a code that will follow the equation y = x * (x + x) * x.
209 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!