This solution is outdated. To rescore this solution, sign in.
function tf = mono_increase(x)
tf = false;
if x(1,1)>=y(1, length(x))
fprintf('false \n');
elseif x(1,1)==0
fprintf('true\n');
else
fprintf('false\n');
end
end
%this is compiling in matlab with all inputs
Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = [0 1 2 3 4];
assert(isequal(mono_increase(x),true));
true
|
2 | Fail |
x = [0];
assert(isequal(mono_increase(x),true));
false
|
3 | Pass |
x = [0 0 0 0 0];
assert(isequal(mono_increase(x),false));
false
|
4 | Pass |
x = [0 1 2 3 -4];
assert(isequal(mono_increase(x),false));
false
|
5 | Pass |
x = [-3 -4 2 3 4];
assert(isequal(mono_increase(x),false));
true
|
6 | Fail |
x = 1:.1:10;
assert(isequal(mono_increase(x),true));
true
|
7 | Pass |
x = cumsum(rand(1,100));
x(5) = -1;
assert(isequal(mono_increase(x),false));
true
|
8 | Fail |
x = cumsum(rand(1,50));
assert(isequal(mono_increase(x),true));
true
|
1882 Solvers
Find the largest value in the 3D matrix
1056 Solvers
Create an n-by-n null matrix and fill with ones certain positions
270 Solvers
266 Solvers
2046 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!