Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Modify this simple code for me, please

2 Ansichten (letzte 30 Tage)
kenifeh
kenifeh am 10 Apr. 2011
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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 Kommentar
Walter Roberson
Walter Roberson am 10 Apr. 2011
Is -5 less than 2 ?

Antworten (1)

the cyclist
the cyclist am 10 Apr. 2011
dh = diff(h)
dh_less_than_2 = sum(dh<2)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by