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 = [0 1 2 3 4];
assert(isequal(mono_increase(x),true));
f =
2.0000
1
|
2 | Pass |
x = [0];
assert(isequal(mono_increase(x),true));
f =
0
1
|
3 | Pass |
x = [0 0 0 0 0];
assert(isequal(mono_increase(x),false));
f =
0
0
|
4 | Pass |
x = [0 1 2 3 -4];
assert(isequal(mono_increase(x),false));
f =
0.4000
0
|
5 | Pass |
x = [-3 -4 2 3 4];
assert(isequal(mono_increase(x),false));
f =
0.4000
0
|
6 | Pass |
x = 1:.1:10;
assert(isequal(mono_increase(x),true));
f =
5.5000
1
|
7 | Pass |
x = cumsum(rand(1,100));
x(5) = -1;
assert(isequal(mono_increase(x),false));
f =
26.7580
0
|
8 | Pass |
x = cumsum(rand(1,50));
assert(isequal(mono_increase(x),true));
f =
13.7850
1
|
Find the sum of all the numbers of the input vector
25590 Solvers
1310 Solvers
263 Solvers
235 Solvers
216 Solvers