initialize set of sequence variables in a loop

hi,
I want to initialize a set of sequence variables in a loop:
for i=1:5
Ti=i;
end
so I can have: T1=1; T2=2; T3=3; ...
is there is a way in matlab to do such a thing?

Más respuestas (1)

Chandrasekhar
Chandrasekhar el 1 de Abr. de 2014
Ti = [1:5];
is this what you are looking for?

3 comentarios

Sososasa
Sososasa el 1 de Abr. de 2014
No I want different variables for different values. and I want the variables to be created inside a loop, and there names in sequence order. T1=1 T2=2
for i = 1:5
eval(['T_' num2str(i) '=' num2str(i)]);
end
Sososasa
Sososasa el 2 de Abr. de 2014
Thank you :) that helped

Iniciar sesión para comentar.

Categorías

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

Preguntada:

el 1 de Abr. de 2014

Comentada:

el 2 de Abr. de 2014

Community Treasure Hunt

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

Start Hunting!

Translated by