Code for Monotonically increasing function

조회 수: 16 (최근 30일)
Swati Sarangi
Swati Sarangi 2020년 11월 19일
댓글: Stephen23 2020년 11월 19일
Hi All,
Can anyone check the following code snippet and tell me why it fails for the following test cases?
x = cumsum(rand(1,100));
x= [ -3 -2 -1 0 1 2 3]
function tf = mono_increase(x)
for ii=1:length(x)
for jj=(ii+1):length(x)
if x(ii)<x(jj)
tf = true;
else
tf = false;
end
end
end
end
I'm getting the desired result in my laptop but with the compiler of MATLAB , I'm getting error.
Please someone tell me how to resolve it.
  댓글 수: 3
Swati Sarangi
Swati Sarangi 2020년 11월 19일
@Stephen
With one loop , will not there be an out-of-bound error?
Stephen23
Stephen23 2020년 11월 19일
"With one loop , will not there be an out-of-bound error?"
Not if the loop iterates the correct number of times (hint: one less than the number of elements).

댓글을 달려면 로그인하십시오.

답변 (1개)

KSSV
KSSV 2020년 11월 19일
x= [ -3 -2 -1 0 1 2 3] ;
function tf = mono_increase(x)
tf = 1 ;
for i = 1:length(x)-1
if x(i+1) < x(i)
tf = 0 ;
break
end
end
end

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by