How to pick a corresponding value during a for loop run

2 visualizaciones (últimos 30 días)
joshua Abam
joshua Abam el 26 de Nov. de 2019
Editada: joshua Abam el 27 de Nov. de 2019
Hi all please I am in need of your assistance, I am to run a simulation using a for loop which is to pick the 1st score in the 1st run, the 2nd score in the 2nd run, the 3rd score in the 3rd run till the end of the loop. This implies that the 1st run will correspond to the score value of 2345, and the 2nd run will correspond to 345 till the end
Thanks for your help
Kind regards
Joshua
function D_auto = response(x)
;;;;;;;;
;;;;;;;;
Dtetha = 45
Dmax = 360-45
for direction = 0:Dtetha:Dmax
;;;;;;;;;;;;;;
;;;;;;;;;;;;;;
scores = [2345,345,87,964,673,9843,763,783]
;;;;;
;;;;;
end
end

Respuesta aceptada

Bhaskar R
Bhaskar R el 26 de Nov. de 2019
Editada: Bhaskar R el 26 de Nov. de 2019
It is possible, only if both variable scores and 0:Dtetha:Dmax(direction) lengths are equal
function D_auto = response(x)
% Your calculations
% ;;;;;;;;
% ;;;;;;;;
Dtetha = 45
Dmax = 360-45
% initialize the scores out of the loop
scores = [2345,345,87,964,673,9843,763,783];
k = 1; % counter variable for forloop
for direction = 0:Dtetha:Dmax
% Your calculations
%;;;;;;;;;;;;;;
% ;;;;;;;;;;;;;;
score_value = scores(k); % % it possible till the length of the direction is equal to scores
% Your calculations
% ;;;;;
% ;;;;;
k = k+1; % increment count variable for each iteration
end
end
  2 comentarios
joshua Abam
joshua Abam el 26 de Nov. de 2019
Editada: joshua Abam el 26 de Nov. de 2019
Dear Bhasker,
Thanks for your help it works perfectly
joshua Abam
joshua Abam el 27 de Nov. de 2019
Editada: joshua Abam el 27 de Nov. de 2019
Dear Bhasker,
Just found a way around it
thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements 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