This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x_min = 55;
x_max = 115;
y_correct = [55 60 65 70 75 80 85 90 95 100 105 110 115];
assert(isequal(counting(x_min,x_max),y_correct))
|
2 | Pass |
x_min = 10;
x_max = 40;
y_correct = [10 15 20 25 30 35 40];
assert(isequal(counting(x_min,x_max),y_correct))
|
3 | Pass |
x_min = -10;
x_max = 20;
y_correct = [-10 -5 0 5 10 15 20];
assert(isequal(counting(x_min,x_max),y_correct))
|
4 | Pass |
x_min = 100;
x_max = 155;
y_correct = [100 105 110 115 120 125 130 135 140 145 150 155];
assert(isequal(counting(x_min,x_max),y_correct))
|
3375 Solvers
Sum of diagonal of a square matrix
1327 Solvers
329 Solvers
Find out value of sine given by degree.
231 Solvers
Matlab Basics - Logical Tests I
192 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!