Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 5;
y_correct = 18000;
assert(isequal(your_fcn_name(x),y_correct))
ans =
18000
|
2 | Pass |
x = 1;
y_correct = 3600;
assert(isequal(your_fcn_name(x),y_correct))%%
x = 10;
y_correct = 36000;
assert(isequal(your_fcn_name(x),y_correct))
ans =
3600
ans =
36000
|
middleAsColumn: Return all but first and last element as a column vector
314 Solvers
477 Solvers
192 Solvers
250 Solvers
Create sequnce 1 4 9 16 25.........
148 Solvers