0

I have 5 lists named liste_1, liste_2,..,liste_5. The goal is to loop on i to make calculations on the different lists:

For i=1:5

  signal=liste_i
  

Then, I'd like to have the possibility to manipulate signal in the loop.

Champion
  • 1
  • 1
  • 2
    Use `list(1)` to `list(5)` in a normal array for same-size elements, or a cell array for different sizes. – beaker Nov 26 '21 at 15:48
  • 2
    To expand on @beaker's comment: What you want to do is called _dynamic variables_, and [should be avoided](https://stackoverflow.com/a/32467170/2586922) – Luis Mendo Nov 26 '21 at 16:04

0 Answers0