Change variable name in a loop
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
gaetano mallardo
el 8 de Abr. de 2019
Editada: madhan ravi
el 8 de Abr. de 2019
I want to call a function in a loop which gives me a 3xn matrix and i want to call the matrix model_(number)
for i=1:length(Domain)
model=IDtriang(trianglesN,Domain,i);
so if length=7 i would like to store 7 matrix like variables as
Model_1
Model_2
Model_3
I know i can do it saving it, but than i should call it back and i don't need it as i have to work with it
0 comentarios
Respuesta aceptada
madhan ravi
el 8 de Abr. de 2019
Editada: madhan ravi
el 8 de Abr. de 2019
Naming variables is not a good idea so store it as a cell array ( https://in.mathworks.com/matlabcentral/answers/304528-tutorial-why-variables-should-not-be-named-dynamically-eval )
model = cell(1,length(Domain)); % before loop
model{i}=IDtriang(trianglesN,Domain,i);
0 comentarios
Más respuestas (0)
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!