MATLAB: Opening a .txt file

textscantxt file

Hi there,
I was wondering if I could have some help reading the attached .txt file. From this I would like to create and array in MATLAB with the same number of rows and columns.
Thanks

Best Answer

N = dlmread('filename.txt','\t');
This loads the data in the text file into the matrix N. Check here