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

35 lines
820 B
C++
Raw Normal View History

#include <iostream>
2014-03-13 18:51:01 +00:00
#include <LatAnalyze/AsciiFile.hpp>
#include <LatAnalyze/Mat.hpp>
#include <LatAnalyze/Math.hpp>
using namespace std;
using namespace Latan;
int main(void)
{
AsciiFile F;
2014-03-12 19:54:27 +00:00
DMat A(2, 3), B(3, 2);
const string fileName = "exMat.dat";
2014-03-12 19:54:27 +00:00
A << 1, 2, 3,
4, 5, 6;
B << 1.0, 2.5,
4.5, 8.9,
1.2, 3.5;
// read
2014-03-12 19:54:27 +00:00
cout << "A=\n" << A << '\n' << endl;
cout << "B=\n" << B << '\n' << endl;
cout << "A*B=\n" << A*B << '\n' << endl;
cout << "cos(A)=\n" << A.unaryExpr(StdMath::cos) << '\n' << endl;
// write
cout << "-- saving A*B..." << endl;
F.open(fileName, File::Mode::append);
2014-02-12 18:35:18 +00:00
F.save(A*B, "AB");
return EXIT_SUCCESS;
}