This solution is outdated. To rescore this solution, sign in.
so I did it in 1 single line but my size is too big :((
Here's my one-liner (similar to yours):
tf = ~sum(x(2:end) - x(1:end-1) <= 0)
you did good job
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = [0 1 2 3 4];
assert(isequal(mono_increase(x),true));
ans =
1
|
2 | Pass |
%%
x = [0];
assert(isequal(mono_increase(x),true));
ans =
1
|
3 | Pass |
%%
x = [0 0 0 0 0];
assert(isequal(mono_increase(x),false));
ans =
0
|
4 | Pass |
%%
x = [0 1 2 3 -4];
assert(isequal(mono_increase(x),false));
ans =
0
|
5 | Pass |
%%
x = [-3 -4 2 3 4];
assert(isequal(mono_increase(x),false));
ans =
0
|
6 | Pass |
%%
x = 1:.1:10;
assert(isequal(mono_increase(x),true));
ans =
1
|
7 | Pass |
%%
x = cumsum(rand(1,100));
x(5) = -1;
assert(isequal(mono_increase(x),false));
ans =
0
|
8 | Pass |
%%
x = cumsum(rand(1,50));
assert(isequal(mono_increase(x),true));
ans =
1
|
17214 Solvers
1763 Solvers
Back to basics 21 - Matrix replicating
1052 Solvers
A Simple Tide Gauge with MATLAB
342 Solvers
266 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!