I have a text file that contains 2 columns and n number of rows separated by tab as delimiter.
Example file.txt:
180 -8.3
111 -98.3
111.3 11.22
121 44
I want to load the above into MATLAB and have an n-by-2 array as follows:
array[0,0]=180
array[0,1]=-8.3
array[1,1]=111
...and so on. How can I do that?