Addition of specified array indexes in simulink
1 回表示 (過去 30 日間)
古いコメントを表示
I am having some problems whentrying to achieve what seems to be a simple for loop with simulink. The loop I want to acheive is something like:
% INPUTS
myArray = [1,2,3,4,3,2,3,4,5,6,7] % example
startIndex = 3
endIndex = 5
% Actual loop
total = 0
for c = startIndex:1:endIndex
total += myArray(c)
end
Any guidance on how could this behaviour be achieved in simulink?
0 件のコメント
採用された回答
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!