Skip to content
Snippets Groups Projects
Commit 94d85efa authored by Christian Beckmann's avatar Christian Beckmann
Browse files

*** empty log message ***

parent c047f0e1
No related branches found
No related tags found
No related merge requests found
...@@ -643,10 +643,10 @@ namespace Melodic{ ...@@ -643,10 +643,10 @@ namespace Melodic{
read_volume4D(old_dof,opts.glmcleanup.value() + "/stats/sigmasquareds"); read_volume4D(old_dof,opts.glmcleanup.value() + "/stats/sigmasquareds");
Matrix tmpmat; Matrix tmpmat;
tmpmat = read_ascii_matrix(opts.glmcleanup.value() + "/stats/dof"); tmpmat = read_ascii_matrix(opts.glmcleanup.value() + "/stats/dof");
char callRMstr[1000];
ostrstream osc(callRMstr,1000); ostringstream osc;
osc << "mv " << opts.glmcleanup.value() << "/stats/dof " << opts.glmcleanup.value() << "/stats/old_dof " <<'\0'; osc << "mv " << opts.glmcleanup.value() << "/stats/dof " << opts.glmcleanup.value() << "/stats/old_dof ";
system(callRMstr); system(osc.str().c_str());
old_dof = old_dof * 0 + tmpmat(1,1); old_dof = old_dof * 0 + tmpmat(1,1);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment