Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Code for Monotonically increasing function

1 回表示 (過去 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.

回答 (0 件)

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by