annotate evaluationtools/printfile.m @ 1:8973548174c1 tip

adding tools to repo
author christopherh
date Mon, 06 May 2013 14:43:47 +0100
parents
children
rev   line source
christopherh@1 1 %printfile(text, filename)
christopherh@1 2
christopherh@1 3 function printfile(text, filename)
christopherh@1 4
christopherh@1 5 fid = fopen(filename, 'w');
christopherh@1 6 fprintf(fid,text);
christopherh@1 7 fclose(fid);