I have a text file which has 500 columns and 500 rows, of numerical(integer) values . Every element in the row is separated by a tab. I want to rea
500 columns
500 rows
You could simply do:
yourVariable = importdata('yourFile.txt')'; %Loads data from file, transposes it and stores it into 'yourVariable'.