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))
|
Generate a vector like 1,2,2,3,3,3,4,4,4,4
1571 Solvers
205 Solvers
Element by element multiplication of two vectors
202 Solvers
186 Solvers
Calculate the number of elements in a matrix.
53 Solvers