Info
この質問は閉じられています。 編集または回答するには再度開いてください。
how to give a name to every case in the loop as the following example ?
1 回表示 (過去 30 日間)
古いコメントを表示
i have a loop which looks like
clc
clear
a=[1:10];
for k=1:10;
b=nchoosek(a,k)
end
but, i want to give a name to every case in the loop in order to be as well: b1=.... b2=.... b3=.... . . . b10=.... until i can call up any one of them separately. i have tried to use this code '(eval(sprintf('b%d = [1:i]',i))' but it ended in failure . please , help me thank you
0 件のコメント
回答 (1 件)
Azzi Abdelmalek
2014 年 6 月 14 日
編集済み: Azzi Abdelmalek
2014 年 6 月 14 日
a=[1:10];
for k=1:10;
b{k}=nchoosek(a,k)
end
It's not good to create several variables, just use a cell class, or or a struct class
4 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!