Two 'eval' statements in a single command?

3 ビュー (過去 30 日間)
Kyriacos Lambrias
Kyriacos Lambrias 2011 年 2 月 11 日
Helo everyone, I am trying to creat a loop that does the following: for j=1:13 ; for i=1:I ; var_j(i:) = simulation_i(j,:) end end
Now, in order to achieve this I obviously need to use the command eval, however I need to do so in both the left and the right hand side of my equation above. I tried many things, including: eval(['var',num2str(j),'(i,:) =' eval(['simulation',num2str(i),'(j,:)'])']);
but it does not work. I get a dimensionality problem, in particular on the lines of the marix: ??? Error using ==> horzcat CAT arguments dimensions are not consistent.
Any ideas? I really think it comes from misuse of the eval-statement twice in a single command. Thanks in advance!
Kyriacos

採用された回答

Vieniava
Vieniava 2011 年 2 月 11 日
This should satisfy your need:
for j=1:13
for i=1:4
eval(['var',num2str(j),'(i,:)=simulation',num2str(i),'(j,:);']);
end
end
  1 件のコメント
Kyriacos Lambrias
Kyriacos Lambrias 2011 年 2 月 11 日
Indeed, it does. Thanks a lot!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by