MATLAB: Can anyone read this file with matlab

.dat.dat file readeegeeg data readeeg file readMATLABmatlab importneural data

here i am attaching link can anyone read .dat file

Best Answer

fid=fopen('filename.dat'),
d=textscan(fid,'%s'),
fclose(fid)
d{:}
Related Question