gistlib
main.mfunction readTextFile(filename) fid = fopen(filename, 'r'); tline = fgetl(fid); while ischar(tline) disp(tline) tline = fgetl(fid); end fclose(fid); end 189 chars10 lines
function readTextFile(filename) fid = fopen(filename, 'r'); tline = fgetl(fid); while ischar(tline) disp(tline) tline = fgetl(fid); end fclose(fid); end
gistlibby LogSnag