1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-10 00:45:36 +00:00

Sample plot utility

This commit is contained in:
Antonin Portelli 2017-07-09 14:14:11 +01:00
parent 769dfd2e05
commit 5641f3b481
2 changed files with 56 additions and 0 deletions

View File

@ -10,6 +10,7 @@ bin_PROGRAMS = \
latan-sample-combine \
latan-sample-element \
latan-sample-fake \
latan-sample-plot \
latan-sample-plot-corr\
latan-sample-read \
latan-resample
@ -30,6 +31,10 @@ latan_sample_plot_corr_SOURCES = sample-plot-corr.cpp
latan_sample_plot_corr_CXXFLAGS = $(COM_CXXFLAGS)
latan_sample_plot_corr_LDFLAGS = -L../lib/.libs -lLatAnalyze
latan_sample_plot_SOURCES = sample-plot.cpp
latan_sample_plot_CXXFLAGS = $(COM_CXXFLAGS)
latan_sample_plot_LDFLAGS = -L../lib/.libs -lLatAnalyze
latan_sample_read_SOURCES = sample-read.cpp
latan_sample_read_CXXFLAGS = $(COM_CXXFLAGS)
latan_sample_read_LDFLAGS = -L../lib/.libs -lLatAnalyze

51
utils/sample-plot.cpp Normal file
View File

@ -0,0 +1,51 @@
/*
* sample-plot.cpp, part of LatAnalyze 3
*
* Copyright (C) 2013 - 2016 Antonin Portelli
*
* LatAnalyze 3 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* LatAnalyze 3 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LatAnalyze 3. If not, see <http://www.gnu.org/licenses/>.
*/
#include <LatAnalyze/Io.hpp>
#include <LatAnalyze/Math.hpp>
#include <LatAnalyze/Plot.hpp>
using namespace std;
using namespace Latan;
using namespace Math;
int main(int argc, char *argv[])
{
string xFileName, yFileName;
if (argc != 3)
{
cerr << "usage: " << argv[0] << " <x sample> <y sample>" << endl;
return EXIT_FAILURE;
}
xFileName = argv[1];
yFileName = argv[2];
Plot p;
DMatSample x, y;
x = Io::load<DMatSample>(xFileName);
y = Io::load<DMatSample>(yFileName);
p << PlotData(x, y);
p.display();
return EXIT_SUCCESS;
}