Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 5668 was 5668, checked in by bensch, 19 years ago

orxonox/trunk: two of 3 eigenvectors

File size: 289 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        Vector eigVc[3];
12
13//        matrix.getEigenValues();
14        matrix.getEigenVectors(eigVc[0], eigVc[1], eigVc[2]);
15}
16
17
Note: See TracBrowser for help on using the repository browser.