Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/math/test.cc @ 5667

Last change on this file since 5667 was 5666, checked in by patrick, 19 years ago

trunk/math: working on eigenvectors, almost got it

File size: 155 bytes
Line 
1
2#include "matrix.h"
3
4int main (int argc, char** argv)
5{
6       
7        Matrix matrix( 0,  1, -1,
8                       1,  1,  0,
9                      -1,  0,  1);
10
11        matrix.eigVl(matrix);
12}
13
14
Note: See TracBrowser for help on using the repository browser.