Filter löschen
Filter löschen

How to pick a corresponding value during a for loop run

1 Ansicht (letzte 30 Tage)
joshua Abam
joshua Abam am 26 Nov. 2019
Bearbeitet: joshua Abam am 27 Nov. 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

Akzeptierte Antwort

Bhaskar R
Bhaskar R am 26 Nov. 2019
Bearbeitet: Bhaskar R am 26 Nov. 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 Kommentare
joshua Abam
joshua Abam am 26 Nov. 2019
Bearbeitet: joshua Abam am 26 Nov. 2019
Dear Bhasker,
Thanks for your help it works perfectly
joshua Abam
joshua Abam am 27 Nov. 2019
Bearbeitet: joshua Abam am 27 Nov. 2019
Dear Bhasker,
Just found a way around it
thanks

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by