aboutsummaryrefslogtreecommitdiffstats
path: root/test/matrix_test.cpp
blob: 8f09ad3826ba763ed556c71785978ec79ccf76e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "Math/matrix.hpp"

#include <iostream>

int main()
{
	yage::Matrix<double, 10, 10> matrix;

	int x=matrix.get(5, 2);

	std::cout<<"at: "<<x<<'\n';
	return 0;
}