フィルターのクリア

store the input into the cell array with a loop

2 ビュー (過去 30 日間)
jarvan
jarvan 2014 年 11 月 11 日
コメント済み: jarvan 2014 年 11 月 13 日
I try to store three input into a cell array by using loop there are some parts I messed up. It said undefined 'game', what should I change with my code?
game1= input('Enter your game :','s')
game2= input('Enter your game :','s')
game3= input('Enter your game :','s')
n = 3;
for i = 1:n
i = cell{game*n}
thegame(i);
end
disp(thegame)

採用された回答

Guillaume
Guillaume 2014 年 11 月 11 日
Your loop makes no sense at all.
The simplest thing would be to store the return value of input straight into the cell array:
game{1}= input('Enter your game :','s')
game{2}= input('Enter your game :','s')
game{3}= input('Enter your game :','s')
Otherwise, you have to use build the name of the variable as a string (using sprintf for example) and then eval it to get the content of the variable:
for gamenumber = 1:3
thegame{gamenumber} = eval(sprintf('game%d', gamenumber));
end
  3 件のコメント
Guillaume
Guillaume 2014 年 11 月 12 日
You use either my first three lines of code on their own, or your first three lines of code plus my for loop.
jarvan
jarvan 2014 年 11 月 13 日
it works now , thanks

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStrategy & Logic についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by