Borrar filtros
Borrar filtros

How can I assign numbers to variables names?

22 visualizaciones (últimos 30 días)
Salah Eddine
Salah Eddine el 15 de Mzo. de 2011
Hi all,
How can I assign numbers to variables names without making them vector elements, for example how we write the following for loop: for i=1:5 Ai=i^2; end in such a way that the result is: A1=1 A2=4 . . A5=25

Respuestas (2)

Paulo Silva
Paulo Silva el 15 de Mzo. de 2011
That's a very bad idea and there are already several similar questions at matlab answers.
  8 comentarios
Matt Fig
Matt Fig el 15 de Mzo. de 2011
I bet if we had just two hyper-linked lines show up somewhere in the process of posting a question, something like:
Are you wondering how to make variables like A1, A2, A3, A4, etc?
Are you wondering why == cannot find your number in an array?
That we could reduce these types of posts significantly. I don't think these two most common FAQs would make the Question submission process that much more cumbersome.
Jan
Jan el 16 de Mzo. de 2011
@Matt: Please send this to Helen (files@mathworks.com). Or better: Let the user confirm, that the question cannot be solved by reading these two links.

Iniciar sesión para comentar.


peter
peter el 15 de Mzo. de 2011
arrayfun(@(x) ['A',num2str(x)],[1:10],'uniformoutput',false)
  1 comentario
Oleg Komarov
Oleg Komarov el 15 de Mzo. de 2011
Which doesn't accomplishes what the OP asked.

Iniciar sesión para comentar.

Categorías

Más información sobre Startup and Shutdown 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