methods.h
Go to the documentation of this file.
1 #ifndef _METHODS_H
2 #define _METHODS_H
3 
4 #include "defines.h"
5 
24 typedef void ONMethod(Matrix3&,Matrix3&);
25 
34 void ExactMethod(Matrix3 &X,Matrix3 &R);
35 
44 void ApproxMethod(Matrix3 &X,Matrix3 &R);
45 
54 void CayleyMethod(Matrix3 &X,Matrix3 &R);
55 
67 void SVDMethodEigen(Matrix3 &X,Matrix3 &R);
68 
85 void SVDMethodIQRSVD(Matrix3 &X,Matrix3 &R);
86 
87 
88 
89 
90 #endif