MATLAB: How to read a file in matrix format

am having a following file and i used "fscanf" to read the file in matrix format,but it will display the value after some calculation… the content could be changed?
also how to read a multiple file with in a folder in matrix format????????

Best Answer

fid=fopen('11_20114111611_logfile.txt','r')
k=textscan(fid,'%d%d%d%d')
cell2mat (k)