How Can I use a string value as a parameter name?

6 visualizaciones (últimos 30 días)
bkshn
bkshn el 19 de Feb. de 2015
Comentada: Michael Haderlein el 19 de Feb. de 2015
Hello
How Can I use a string value as a parameter name?
I have a function that return a string value, I want to use this function in another function and use this string value as parameter name that is a Image.
Could You help me?
thanks
  4 comentarios
bkshn
bkshn el 19 de Feb. de 2015
Thanks Akshata M it's work!
Michael Haderlein
Michael Haderlein el 19 de Feb. de 2015
I don't know your code and, as mentioned before, I didn't really understand the question. But in 99 % of the cases using eval is not the best idea. Besides issues such as slow execution, it makes debugging very difficult. There are cases when eval is the best (or the only) way, but that's limited to the 1 % remaining in my statistics. In all other cases, I'd not recommend it.

Iniciar sesión para comentar.

Respuestas (2)

Stephen23
Stephen23 el 19 de Feb. de 2015
Editada: Stephen23 el 19 de Feb. de 2015
You can allocate that string to a variable, and use that variable in the next function:
str = firstFunction(...);
secondFunction(str)
This will call the second function with whatever string the first function returned.
If you are talking about using a string to dynamically name a variable, then don't do this and use a cell array or structure instead.

Michael scheinfeild
Michael scheinfeild el 19 de Feb. de 2015
use strcmp

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by