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 );
|
6281 Solvers
What is the distance from point P(x,y) to the line Ax + By + C = 0?
277 Solvers
489 Solvers
Convert given decimal number to binary number.
636 Solvers
Solve a System of Linear Equations
3452 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!