Storing values of a variable in a new one
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Zenid
el 22 de Sept. de 2015
Hello! I have a variable with two rows. One contains time points and the other numbers that indicate which event happened at these time points. How do I best go about going through this variable and storing the values of the different events in new variables. Grateful for any help! Cheers!
5 comentarios
Respuesta aceptada
Stephen23
el 22 de Sept. de 2015
Editada: Stephen23
el 22 de Sept. de 2015
"How do I best go about going through this variable and storing the values of the different events in new variables"
Don't.
Keep your data in one numeric array, and then use indices to access the parts of it that you need to do. Trying to create variable names dynamically is a poor programming practice and will be obfuscated, hard to debug, and slow to run.
Learn to use MATLAB efficiently:
- Keep your data in numeric arrays.
- Do not use multiple arrays when one will do.
- Use the dimensions of those arrays, rather than splitting them up into multiple variables.
- Only use cell arrays when your data does not fit neatly into one array due to mismatching dimensions.
- Do not create variables dynamically.
- Learn to write vectorized code.
Why it is a bad practice to create variable names dynamically:
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!