Implement an arbitrary number N nested for loop
Ältere Kommentare anzeigen
In my project, I'm looking for a way to create a nested for loop up to a fixed number N, for my purpose, the N is an integer smaller than 300, therefore it's useful to create such a function. To explain it better my problem, i would illustrate with an example:
list_to_loop = [1,a,b,c]
% Psuedo code:
for i in list_to_loop:
for j in list_to_loop:
for k in list_to_loop:
Dosomething()
end
end
end
I guess you already see the logic behind, in this example N = 3, i.e. I get a 3 layer nested for loop. I have seen answers to similar questions before but the answers were not general enough or its not very easy to understand because i come from a python background. Is there a very simple and elegant way to do this?
10 Kommentare
Bora Eryilmaz
am 8 Dez. 2022
Having N nested for-loops, where "N is very big", is a very bad way of solving a problem (any problem). Could you find a different approach to solve your problem?
DGM
am 8 Dez. 2022
Since the function is not a function of the indices, then the nested loops are simply unnecessary. This is equivalent to the above.
list = [1 a b c]
for k = prod(list)
% do thing
end
Chun Tat
am 12 Dez. 2022
Bruno Luong
am 12 Dez. 2022
Bearbeitet: Bruno Luong
am 12 Dez. 2022
"...fixed number N, for my purpose, the N is very big"
" I would like to run the code where N is not so big "
Please make up your mind.
And what exactly means "very big" and "not so big"? What typical size for each list? Please be more specific, or give us an example of input.
Chun Tat
am 12 Dez. 2022
The list will only contain 4 elements. And N can be as large as 100. Usually i run the code until my solution converges so it's hard to tell you exactly what N is.. but should be between 100-300.
Basically, I'm trying to compute all the possible combinations that can be given by the expansion of this expression
That's not going to happen with brute force. You want 100-300 loops each of which can take on 4 different values? How many times does the innermost body of that huge collection of loops get executed?
n = 4^100
Let's say you could process a billion combinations a second. How long would it take you to process them all?
y = years(seconds(n/1e9))
According to Wikipedia's Timeline of the far future you're going to have to wait until the Black Hole Era to get your results.
"Estimated time for all nucleons in the observable universe to decay, if the hypothesized proton half-life takes the largest possible value, 10^41 years,[8] assuming that the Big Bang was inflationary and that the same process that made baryons predominate over anti-baryons in the early Universe makes protons decay.[142][note 4] By this time, if protons do decay, the Black Hole Era, in which black holes are the only remaining celestial objects, begins.[136][8]"
Chun Tat
am 12 Dez. 2022
Bearbeitet: Walter Roberson
am 12 Dez. 2022
Bruno Luong
am 12 Dez. 2022
Bearbeitet: Bruno Luong
am 12 Dez. 2022
@Chun Tat ". And this is the solution I found, known as the "odometer" pattern"
I don't think you understood what we try to tell you.
"odometer" simply avoid to store all the combinations in the memory.
But it does speed up the calcultion and reduce the number of combination. You still have to wait unter universe reaches back-hole age to get your result.
Walter Roberson
am 12 Dez. 2022
The odometer pattern is not, in itself, "smart". It just tries all possibilities in sequence, without having to store the values, but it does not (without additional logic) have the ability to do short-cuts rejecting possibilities. If for example it turned out that the second coefficient needed to be 1 less than the first coefficient, then it would not be able to detect that immediately after changing the second coefficient, and would instead run through all possibilities for the 3rd to 100th coefficient before incrementing the second coefficient.
The odometer pattern is pure "brute force". it does not even try to optimize the search -- not without additional logic.
Akzeptierte Antwort
Weitere Antworten (1)
Assuming a not so bug N of 100, and each of your list_to_loop has 2 elements, and you can compute 1000000000 (1e9) Dosomething() per second
You need
timeinyear = (2^100)/(1e9)/(3600*24*365)
years to compute your nested loop. Still want to try?
1 Kommentar
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!