Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
y = your_fcn_name(100,100);
assert( y(1) == -100 && y(end) == 100 && mean(diff(y))== 2 && std(diff(y)) == 0 );
|
2 | Pass |
y = your_fcn_name(200,100);
assert( y(1) == -100 && y(end) == 100 && mean(diff(y))== 1 && std(diff(y)) == 0 );
|
3 | Pass |
y = your_fcn_name(2,100);
assert( y(1) == -100 && y(end) == 100 && mean(diff(y))== 100 && std(diff(y)) == 0 );
|
Least common multiple of many numbers
189 Solvers
Find the sum of the elements in the "second" diagonal
994 Solvers
Find the largest value in the 3D matrix
1056 Solvers
315 Solvers
664 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!