How can i generate multiple values?

2 views (last 30 days)
Triveni
Triveni on 1 Feb 2016
Edited: Stephen23 on 1 Feb 2016
Actually i want to generate it to
a1 = d(1,1,:);
a2 = d(1,2,:);
a3 = d(1,3,:);
a4 = d(1,4,:);
a5 = d(1,5,:);
a6 = d(1,6,:);
a7 = d(1,7,:);
a8 = d(1,8,:);
a9 = d(1,9,:);
and so on...
means when i press 'a'
i need values a = sym('a', [1 30]);
where & i want to generate a1, a2,a3... = d(1,1,:), d(1,2,:)...
a1 = d(1,1,:);
a2 = d(1,2,:);
a3 = d(1,3,:);
a4 = d(1,4,:);
a5 = d(1,5,:);
a6 = d(1,6,:);
a7 = d(1,7,:);
a8 = d(1,8,:);
a9 = d(1,9,:);
a= sym('a', [1, 30]);
syms d
for i = 1:length(a)
a(1,i) = d(1,i,:)
end
  1 Comment
Stephen23
Stephen23 on 1 Feb 2016
Edited: Stephen23 on 1 Feb 2016
Don't do this!
Read the answers carefully to know why this is a bad way to write code.

Sign in to comment.

Accepted Answer

Stephen23
Stephen23 on 1 Feb 2016
Ugh... this is a really bad idea!
Avoid creating dynamically named variables in MATLAB. This is poor practice as has been explained many times on this forum, and is not recommended by MATLAB themselves:
When you are a beginner it seems like a cunning and fast way to store information, but actually it is really bad practice to name your variables dynamically. MATLAB is also not intended for this kind of variable naming: if you continue to include data in the variable names then you will find yourself fighting many more of these battles against MATLAB.
However when you use more appropriate storage for your data (and meta-data) then you will suddenly find lots of MATLAB functions that do many useful operations for you, quickly and easily.
In your case a much more robust solution would be to use:
There are many functions that support working on structures and cell arrays and can access their data easily, and many functions operate on complete numeric arrays all at once without any loops (i.e. vectorized code, which is something you need to learn about).
Placing your data in a structure or cell array also makes it much easier to pass to functions: can you imagine the fight you would have trying to pass hundreds of dynamically named variables to a function?
If you have a newer version of matlab you can also use a table , which stores the data together in one array but also allows key-name access to the columns. This might be a good alternative for your data.
Not only that but using the function eval makes your code very slow, extremely difficult to debug, and it obscure the code's meaning. Beginners often use eval for everything, and then complain that they cannot debug it, or that their code is very slow:
Solution: do not use eval! It really is that simple.
Here is a discussion of why it is a bad idea to include meta-data (such as an index) in a variable name:
And here is a discussion of why it is a really bad idea to make variables magically appear any workspace (even though beginners love doing this):
Finally, here are some pages explaining why dynamically assigning variable names is a really bad idea in MATLAB:
And in case you thought this is a MATLAB restriction, here is the same discussion for some other languages, advising "DO NOT create dynamic variable names":

More Answers (1)

Walter Roberson
Walter Roberson on 1 Feb 2016

Tags

Products

Community Treasure Hunt

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

Start Hunting!