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
Have you tired load with -ascii option? For example
load
-ascii
a = load('myfile.txt', '-ascii'); % read the data a = a.'; %' transpose