mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 00:45:36 +00:00
86 lines
2.1 KiB
C++
86 lines
2.1 KiB
C++
#include <iostream>
|
|
#include <libgen.h>
|
|
#include <unistd.h>
|
|
#include <latan/Dataset.hpp>
|
|
#include <latan/Io.hpp>
|
|
|
|
#ifndef DEF_NSAMPLE
|
|
#define DEF_NSAMPLE 100u
|
|
#endif
|
|
|
|
using namespace std;
|
|
using namespace Latan;
|
|
|
|
static void usage(const string &cmdName)
|
|
{
|
|
cerr << "usage: " << cmdName
|
|
<< " [-n <nsample> -r <state> -o <output>] <manifest> <name> "
|
|
<< endl;
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int c;
|
|
unsigned int nSample = DEF_NSAMPLE;
|
|
string manFileName, name, outFileName, stateFileName;
|
|
char *cmdName;
|
|
|
|
opterr = 0;
|
|
cmdName = basename(argv[0]);
|
|
while ((c = getopt(argc, argv, "n:r:o:")) != -1)
|
|
{
|
|
switch (c)
|
|
{
|
|
case 'n':
|
|
nSample = strTo<unsigned int>(optarg);
|
|
break;
|
|
case 'r':
|
|
stateFileName = optarg;
|
|
break;
|
|
case 'o':
|
|
outFileName = optarg;
|
|
break;
|
|
case '?':
|
|
cerr << "error parsing option -" << char(optopt) << endl;
|
|
usage(cmdName);
|
|
break;
|
|
default:
|
|
usage(cmdName);
|
|
break;
|
|
}
|
|
}
|
|
if (argc - optind == 2)
|
|
{
|
|
manFileName = argv[optind];
|
|
name = argv[optind+1];
|
|
}
|
|
else
|
|
{
|
|
usage(cmdName);
|
|
}
|
|
|
|
Dataset<DMat, AsciiFile> dataset;
|
|
DMatSample s;
|
|
RandGen g;
|
|
|
|
if (!stateFileName.empty())
|
|
{
|
|
AsciiFile f(stateFileName, File::Mode::read);
|
|
g.setState(f.read<RandGen::State>());
|
|
}
|
|
cout << "-- loading data from manifest '" << manFileName << "'..." << endl;
|
|
dataset.load(manFileName, name);
|
|
s = dataset.bootstrapMean(nSample, g);
|
|
cout << scientific;
|
|
cout << "central value:\n" << s[central] << endl;
|
|
cout << "standard deviation:\n" << s.variance().cwiseSqrt() << endl;
|
|
if (!outFileName.empty())
|
|
{
|
|
AsciiFile f(outFileName, File::Mode::write);
|
|
f.save(s, manFileName + "_" + name);
|
|
}
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|