LOOP in matlab (for)

1 回表示 (過去 30 日間)
daniel alves
daniel alves 2015 年 5 月 6 日
編集済み: James Tursa 2015 年 5 月 6 日
I need a loop for that sequence.
T_01=U_01(:,:,1)';
T_01(T_01==0)=nan;
i've got U_01:U_60 so i need T_01:T_60
Anyone knows how to make that loop?
Thank you

採用された回答

James Tursa
James Tursa 2015 年 5 月 6 日
編集済み: James Tursa 2015 年 5 月 6 日
It appears you have multiple variables in your workspace with names such as U_01, U_02, ... U_60 and you want to make more of these using T. There is a way to construct a loop to process these names using the "eval" function, but as you can already see it is a real pain to deal with variables such as this in your code. The best advice I can give you is to abandon this approach and use cell or struct or multi-dimensional variables instead. E.g., see this link:

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by