Skip to content
Snippets Groups Projects
Commit aaac7380 authored by Mark Woolrich's avatar Mark Woolrich
Browse files

added some outputting

parent ffce9cef
No related branches found
No related tags found
No related merge requests found
...@@ -87,6 +87,12 @@ int main(int argc, char *argv[]) ...@@ -87,6 +87,12 @@ int main(int argc, char *argv[])
write_vest(logger.appendDir("Gc"), parad.getDesignMatrix()); write_vest(logger.appendDir("Gc"), parad.getDesignMatrix());
} }
OUT(parad.getDesignMatrix().Nrows());
OUT(parad.getDesignMatrix().Ncols());
OUT(sizeTS);
OUT(numTS);
// Setup GLM: // Setup GLM:
int numParams = parad.getDesignMatrix().Ncols(); int numParams = parad.getDesignMatrix().Ncols();
GlimGls glimGls(numTS, sizeTS, numParams); GlimGls glimGls(numTS, sizeTS, numParams);
...@@ -152,9 +158,7 @@ int main(int argc, char *argv[]) ...@@ -152,9 +158,7 @@ int main(int argc, char *argv[])
cout << "Prewhitening and Computing PEs..." << endl; cout << "Prewhitening and Computing PEs..." << endl;
cout << "Percentage done:" << endl; cout << "Percentage done:" << endl;
int co = 1; int co = 1;
OUT(parad.getDesignMatrix().Nrows());
OUT(parad.getDesignMatrix().Ncols());
Matrix mean_prewhitened_dm(parad.getDesignMatrix().Nrows(),parad.getDesignMatrix().Ncols()); Matrix mean_prewhitened_dm(parad.getDesignMatrix().Nrows(),parad.getDesignMatrix().Ncols());
mean_prewhitened_dm=0; mean_prewhitened_dm=0;
......
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