diff --git a/utils/sample-plot-corr.cpp b/utils/sample-plot-corr.cpp
index 47af749..2a1e260 100644
--- a/utils/sample-plot-corr.cpp
+++ b/utils/sample-plot-corr.cpp
@@ -17,6 +17,7 @@
* along with LatAnalyze 3. If not, see .
*/
+#include
#include
#include
#include
@@ -27,16 +28,37 @@ using namespace Math;
int main(int argc, char *argv[])
{
- if (argc != 2)
+ OptParser opt;
+ bool parsed;
+ string outCorrName = "", outVarName = "";
+
+ opt.addOption("", "saveCorr", OptParser::OptType::value, true,
+ "save correlation matrix (default: not saved)");
+ opt.addOption("", "saveVar", OptParser::OptType::value, true,
+ "save variance matrix (default: not saved)");
+ opt.addOption("" , "help" , OptParser::OptType::trigger, true,
+ "show this help message and exit");
+ parsed = opt.parse(argc, argv);
+ if (!parsed or (opt.getArgs().size() != 1) or opt.gotOption("help"))
{
- cerr << "usage: " << argv[0] << " " << endl;
+ cerr << "usage: " << argv[0];
+ cerr << " " << endl;
+ cerr << endl << "Possible options:" << endl << opt << endl;
return EXIT_FAILURE;
}
+ if (opt.gotOption("saveCorr"))
+ {
+ outCorrName = opt.optionValue("saveCorr");
+ }
+ if (opt.gotOption("saveVar"))
+ {
+ outVarName = opt.optionValue("saveVar");
+ }
- string fileName = argv[1], name;
+ string fileName = opt.getArgs()[0], name;
DMatSample sample;
- DMat var;
+ DMat var, corr;
Plot p;
cout << "-- computing variance matrix from '" << fileName << "'..." << endl;
@@ -44,8 +66,17 @@ int main(int argc, char *argv[])
sample = Io::load(fileName);
sample = sample.block(0, 0, sample[central].rows(), 1);
var = sample.varianceMatrix();
- p << PlotMatrix(varToCorr(var));
+ corr = sample.correlationMatrix();
+ p << PlotMatrix(corr);
p.display();
+ if (!outVarName.empty())
+ {
+ Io::save(var, outVarName);
+ }
+ if (!outCorrName.empty())
+ {
+ Io::save(corr, outCorrName);
+ }
return EXIT_SUCCESS;
}