initialize set of sequence variables in a loop

1 Ansicht (letzte 30 Tage)
Sososasa
Sososasa am 1 Apr. 2014
Kommentiert: Sososasa am 2 Apr. 2014
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?

Akzeptierte Antwort

Dishant Arora
Dishant Arora am 1 Apr. 2014

Weitere Antworten (1)

Chandrasekhar
Chandrasekhar am 1 Apr. 2014
Ti = [1:5];
is this what you are looking for?
  3 Kommentare
Chandrasekhar
Chandrasekhar am 1 Apr. 2014
for i = 1:5
eval(['T_' num2str(i) '=' num2str(i)]);
end
Sososasa
Sososasa am 2 Apr. 2014
Thank you :) that helped

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by