How to assign a value to a variable in for loop?

Hello all,
I'm getting some input from the user to create the name of a variable as follow:
LocationIMU = string(input('thigh/shank/foot?','s')); %'thigh'
Side = string(input('paretic/non?','s')); %'paretic'
Component = string(input('X/Y/Z/Ox/Oy/Oz?','s')); %'X'
File = string(input('acceleration or angular velocity?','s')); %'acceleration
assignin('base',strcat(LocationIMU,'_' ,File ,'_' ,Component ,'_' ,Side, '_Good'),zeros(101,1));
up to here I get what I want, a variable named thigh_acceleration_X_paretic_Good ( considering the comments as input).
Now I need to creat a for loop and in this for loop I'll be adding new columns to this variable but as this variable can change accordingto input, I don't want to hard code it and need to find a way to add the columns to it. Here's what I am trying to do but as said I don't want it to be hard coded:
for i =1:endLoop
signal = 1:100;
thigh_acceleration_X_paretic_Good (:,end+1) = signal;
end
here I hard coded the variable name, how could I do it without writing the variable name and instead having it from inputs?
I hope I could explain what I mean.

1 comentario

Stephen23
Stephen23 el 14 de Oct. de 2022
"I hope I could explain what I mean."
We understand what you mean, and we also know that the answer is always the same: do NOT do this.
Meta-data (e.g. location, component, side names) is data, and data belongs in variables (not in variable names). Once you store meta-data in variables, then your code will be neat, simple, and efficient (unlike with what you are trying to do).

Iniciar sesión para comentar.

 Respuesta aceptada

Jan
Jan el 14 de Oct. de 2022

0 votos

This is the most frequently asked question from beginners. Professional programmers give the simple and not expected answer: Don't do this! You drill a hole in your own knee.
Do not store important information in the name of variables, but in their values.

3 comentarios

azarang asadi
azarang asadi el 14 de Oct. de 2022
well I saw this post on a question that looked like mine, but I still need to do this no matter enefficient. Thank you
Who imposed the external requirement that you create dynamic variable names?
Jan
Jan el 15 de Oct. de 2022
@azarang asadi: As said already, this is the question asked most frequently by beginners. Others and me have dicussed this exhaustively hundreds of times. The results was always the same: You are the programmer and you can write cleaner and better and most of all working code.
Take the chance to learn from the mistakes of others.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Productos

Etiquetas

Preguntada:

el 14 de Oct. de 2022

Comentada:

Jan
el 15 de Oct. de 2022

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by