Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [0 1 2 3 4];
assert(isequal(mono_increase(x),true));
tf =
logical
1
|
2 | Pass |
x = [0];
assert(isequal(mono_increase(x),true));
tf =
logical
1
|
3 | Pass |
x = [0 0 0 0 0];
assert(isequal(mono_increase(x),false));
tf =
logical
0
|
4 | Pass |
x = [0 1 2 3 -4];
assert(isequal(mono_increase(x),false));
tf =
logical
0
|
5 | Pass |
x = [-3 -4 2 3 4];
assert(isequal(mono_increase(x),false));
tf =
logical
0
|
6 | Pass |
x = 1:.1:10;
assert(isequal(mono_increase(x),true));
tf =
logical
1
|
7 | Pass |
x = cumsum(rand(1,100));
x(5) = -1;
assert(isequal(mono_increase(x),false));
tf =
logical
0
|
8 | Pass |
x = cumsum(rand(1,50));
assert(isequal(mono_increase(x),true));
tf =
logical
1
|
Determine whether a vector is monotonically increasing
9274 Solvers
351 Solvers
The Answer to Life, the Universe, and Everything
313 Solvers
223 Solvers
Output any real number that is neither positive nor negative
252 Solvers