|
|
how to make rows and columns from excel files? please help
Posted:
Nov 3, 2009 8:14 PM
|
|
'Game' 'January' 'February' 'March' 'April' 'May' 'June' 'iKitty' 75] 254 1235 1820 2114 1600 'ShootEmUp' 3584] 4588 9421 10588 12788 16889
okay i have this. i know how to put in rows and columns for iKitty and ShootemUP.
[numbers, text, everything] = xlsread(fileName);
iKitty = numbers(1,:); shootEmUp = numbers(2,:);
but i need to figure out how if there was more data add(such as new game) how can i use a for loop to put everything in row and columns?
|
|