This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [0 1 2 3 4];
assert(isequal(mono_increase(x),true));
a =
5
|
2 | Pass |
x = [0];
assert(isequal(mono_increase(x),true));
a =
1
tf =
logical
1
|
3 | Pass |
x = [0 0 0 0 0];
assert(isequal(mono_increase(x),false));
a =
5
|
4 | Pass |
x = [0 1 2 3 -4];
assert(isequal(mono_increase(x),false));
a =
5
|
5 | Pass |
x = [-3 -4 2 3 4];
assert(isequal(mono_increase(x),false));
a =
5
|
6 | Pass |
x = 1:.1:10;
assert(isequal(mono_increase(x),true));
a =
91
|
7 | Pass |
x = cumsum(rand(1,100));
x(5) = -1;
assert(isequal(mono_increase(x),false));
a =
100
|
8 | Pass |
x = cumsum(rand(1,50));
assert(isequal(mono_increase(x),true));
a =
50
|
Given a window, how many subsets of a vector sum positive
743 Solvers
convert matrix to single column
306 Solvers
1221 Solvers
Solve a System of Linear Equations
3449 Solvers
2033 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!