Mercurial > hg > human-echolocation
changeset 17:4952897aa6d4 jabuilder_int
Use path with \ replaced with \\ (avoiding string escapes for Windows paths)
author | Chris Cannam |
---|---|
date | Tue, 30 Sep 2014 12:40:40 +0100 |
parents | 6dfa2a7dbebe |
children | 2d5f50205527 |
files | simulateBinauralSignals.m |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/simulateBinauralSignals.m Mon Mar 03 15:33:32 2014 +0000 +++ b/simulateBinauralSignals.m Tue Sep 30 12:40:40 2014 +0100 @@ -407,9 +407,9 @@ fprintf(fid,'\n SHOWTEXT = 2;'); fprintf(fid,'\n SUPPRESSFILES = 0;'); temp = strrep(outdir,'\','\\'); -fprintf(fid,['\n Filepath=''' outdir filesep ''';']); +fprintf(fid,['\n Filepath=''' temp filesep ''';']); fprintf(fid,['\n Filestem=''' temp_filename ''';']); -fprintf(fid,['\n CADfile=''' outdir filesep cad_filename ''';']); +fprintf(fid,['\n CADfile=''' temp filesep cad_filename ''';']); fprintf(fid,'\n open_or_closed_model = ''open'';'); fprintf(fid,'\n int_or_ext_model = ''ext'';'); fprintf(fid,'\n EDcalcmethod = ''n'';');