How to pick a corresponding value during a for loop run

1 次查看(过去 30 天)
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

采纳的回答

Bhaskar R
Bhaskar R 2019-11-26
编辑:Bhaskar R 2019-11-26
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by