1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-09-20 05:25:37 +01:00
LatAnalyze/examples/exMat.cpp

31 lines
685 B
C++

#include <iostream>
#include <latan/Io.hpp>
#include <latan/Mat.hpp>
using namespace std;
using namespace Latan;
int main(void)
{
AsciiFile F;
DMat A,B;
const string fileName = "exMat.dat";
// read
cout << "-- reading " << fileName << "..." << endl;
F.open(fileName, File::Mode::read);
A = F.read<DMat>("A");
B = F.read<DMat>("B");
cout << "A=\n" << A << '\n' << endl;
cout << "B=\n" << B << '\n' << endl;
cout << "A*B=\n" << A*B << '\n' << endl;
F.close();
// write
cout << "-- saving A*B..." << endl;
F.open(fileName, File::Mode::append);
F.save((A*B).eval(), "AB");
return EXIT_SUCCESS;
}