How to declare a structure as global
    8 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
How can I access a structure defined in a for loop, outside the for loop??
0 comentarios
Respuestas (2)
  Walter Roberson
      
      
 el 16 de Abr. de 2012
        Any variables defined within the loop will continue to exist after the loop, until the defining function returns.
If you are defining the structure in the for loop, are you possibly overwriting the structure in each iteration of the loop? That could be a problem for you.
0 comentarios
  Tom
    
 el 16 de Abr. de 2012
        The easiest way would be to preallocate it from outside the for loop. In MATLAB, you don't have to declare variables, but you can create the variable and fill it with zeros, or empty strings, ' '.
0 comentarios
Ver también
Categorías
				Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


