bug fix: fputs not a matlab function

time-shift
Houtan Bastani 2013-03-18 16:25:38 +01:00
parent aac25a88bd
commit 0e5acda10e
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ end
if ~no_log
logname = [fname(1:end-4) '.log'];
fid = fopen(logname, 'w');
fputs(fid, result);
fprintf(fid, '%s', result);
fclose(fid);
end