Check if vector is increasing monotonely or just increasing

59 ビュー (過去 30 日間)
am
am 2019 年 3 月 22 日
編集済み: Rik 2023 年 2 月 2 日
Hello,
I have to check if the elements in a vector are in increasing order (or even equal to each other). In that case the function should return true. But if the following element is smaller, it should return false.
The function below doesn't pass tests if my vector is not monotonous, and I can't understand why?
function t = is_increasing(x)
k = 1
for k = 1:(length(x)-1)
if x(k+1) - x(k) > 0 || x(k+1) - x(k) == 0
t = true
k = k + 1
else
t = false
return
end
end
end

採用された回答

KSSV
KSSV 2019 年 3 月 22 日
編集済み: Rik 2023 年 2 月 2 日
YOu should read about diff. You can search this question in google. It is asked multiple times.
Edit @Rik: replaced link with archive link, as the original website seems down.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGoogle についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by