フィルターのクリア

Info

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

Modify this simple code for me, please

2 ビュー (過去 30 日間)
kenifeh
kenifeh 2011 年 4 月 10 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Recently, i asked a question about how to a certain number in the array of h to be displayed in the exact sequence. Someone gave me the correct answer. Please find the code below.
h=[2 4 6 1 7 5 9 8 9 2 5 7 2 4 6 7];
for p=1:16
index=input('please enter a number between 1 to 16:');
answer=h(index)
end
Can someone please help me modify this code? Now, i dont want it to request that i input any value of p before displaying the right value of h. I want it to be able to call the following
1. h(2)-h(1), h(3)-h(2), h(4)-h(3), h(5)-(h4), h(6)-h(5)...h(16)-h(15). 2. For the values in 1 above, display the figure(how many?) of digits that are less than 2
I need the answer to develop a specific code...Thanks, in anticipation of an urgent response
  1 件のコメント
Walter Roberson
Walter Roberson 2011 年 4 月 10 日
Is -5 less than 2 ?

回答 (1 件)

the cyclist
the cyclist 2011 年 4 月 10 日
dh = diff(h)
dh_less_than_2 = sum(dh<2)

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by