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

#include <iostream>

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

	int x=matrix[2][2];
	
	std::cout<<"at: "<<x<<'\n';
	return 0;
}