Working with for loop

2 visualizaciones (últimos 30 días)
Tania Islam
Tania Islam el 6 de Jul. de 2020
Comentada: Tania Islam el 7 de Jul. de 2020
Hi,
In my following code I want my final result ( final_delay) without skipping any index. Currently it skipping 4 index because of this line (i_value= 1:4:len). But I dont want to skip this index for my final result. How can I do that.
Thank you so much for your time and considerations.
data1=rand(1,1000)
data2=rand(1,1000)
data3=rand(1,1000)
len=200;
time=zeros(1,len)
trigger=3
for i_value= 1:4:len
delay1=data1(i_value)
delay2=data1(i_value+1)
delay_1=(delay1+delay2)/2
delay3=data2(i_value)
delay4=data2(i_value+1)
delay_2=(delay3+delay4)/2
RTT_1=data2(i_value+2)+data3(i_value)+data1(i_value+2)
final_delay(i_value)= abs(RTT_1-delay_1-delay_2)
end
  5 comentarios
madhan ravi
madhan ravi el 6 de Jul. de 2020
Yet again you forgot to attach how the expected result should look like. Paste it as a text , screenshot is not useful.
Tania Islam
Tania Islam el 6 de Jul. de 2020
Thank you so much for your time to consider this problem. I think I am close to my answer by @Matt J.

Iniciar sesión para comentar.

Respuesta aceptada

Matt J
Matt J el 6 de Jul. de 2020
Editada: Matt J el 6 de Jul. de 2020
I_values=1:4:len;
final_delay=nan(1,numel(I_values)); %PRE-ALLOCATE!!!!!!
for k=1:numel(I_values)
i_value=I_values(k);% Matt J inserted
delay1=data1(i_value)
delay2=data1(i_value+1)
delay_1=(delay1+delay2)/2
delay3=data2(i_value)
delay4=data2(i_value+1)
delay_2=(delay3+delay4)/2
RTT_1=data2(i_value+2)+data3(i_value)+data1(i_value+2)
final_delay(k)= abs(RTT_1-delay_1-delay_2) %Matt J edited
end
  3 comentarios
Matt J
Matt J el 6 de Jul. de 2020
We are not deleting anything, just filling a smaller vector.
Tania Islam
Tania Islam el 7 de Jul. de 2020
Thank you so much

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by