From string to matrix name

18 visualizaciones (últimos 30 días)
Zuza Swirad
Zuza Swirad el 28 de Abr. de 2016
Editada: Stephen23 el 29 de Abr. de 2016
Hi, I would like to enter a specific value in a martix whose name is created by string. I've got a set of input tables 'input1', 'input2' ... 'inputn' and want to fill the same cell in each of them with a specific value.
I unsuccessfully try:
for n=1:12
name=sprintf('input%d',n);
name(2,2)=3;
end
Any suggestions? Thanks
  1 comentario
Stephen23
Stephen23 el 29 de Abr. de 2016
Editada: Stephen23 el 29 de Abr. de 2016
@Zuza Swirad: What you are doing is a really slow and buggy way to write code. For some reasons many beginners think that dynamically accessing variables is a great idea: But really it isn't. There have been lots of discussion on this topic, if you really want to solve your question in a robust way then you need to avoid accessing variables names dynamically.
When you write code properly (without dynamic variable names) then it is faster, neater, more robust, easier to debug, less obfuscated, much more efficient, etc., etc.
Read this to know more about why your "solution" with eval is terrible way to write code:
Even worse, using eval removes all of the inbuilt code checking tools that MATLAB has, which check your code as you write it in the editor One would think beginners would find these code checking tools useful, but instead they decide to use slow, buggy code that turns off all code helper tools...
Keep your data easily accessible in one variable. it is much faster, easier to access, easier to debug,...

Iniciar sesión para comentar.

Respuesta aceptada

Star Strider
Star Strider el 28 de Abr. de 2016
I cannot test your code, but you probably have to use the eval function to do what you want:
name{n} = eval(sprintf('input%d',n));
You also need to subscript your name variable somehow. I used a cell array here because I don’t know what your ‘input1’ and other variables contain, and a cell array will work. See the documentation on Cell Arrays for details on how to work with them if you have not used them before. (Change it to a numeric array if that works best for you.)
The eval function is normally to be avoided, but at least you are using it to do the correct approach, that being to take several different variables and combine them in a single matrix.
NOTE Note that this is UNTESTED CODE but it should work. You may need to experiment with it, though.
  1 comentario
Stephen23
Stephen23 el 29 de Abr. de 2016
Editada: Stephen23 el 29 de Abr. de 2016
@Star Strider: I think you misread the question: "I've got a set of input tables 'input1', 'input2' ... 'inputn' and want to fill the same cell in each of them with a specific value"
It does not mention merging the data into one variable, it describes adding some value to each of the existing variables.
The separate variables still exist, and presumably will get accessed again by some slow and buggy method.

Iniciar sesión para comentar.

Más respuestas (2)

Renato Agurto
Renato Agurto el 28 de Abr. de 2016
str = [name '(2,2) = 3'];
eval(str);
you could also try to define the tables as a cell array to avoid using eval
for n=1:12
input{n}(2,2)=3;
end

Zuza Swirad
Zuza Swirad el 29 de Abr. de 2016
Hi both,
thanks a lot for your replies! I managed to do it by using sprintf, regexprep and eval.
I failed every time I tried to access the matrix by input{n}(2,2) though. (it would be the fastest)
Thanks!

Categorías

Más información sobre Tables 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!

Translated by