KrisLibrary  1.0.0
LinearlyDependent.h
1 #ifndef MATH_LINEARLY_DEPENDENT_H
2 #define MATH_LINEARLY_DEPENDENT_H
3 
4 #include "VectorTemplate.h"
5 #include "MatrixTemplate.h"
6 
7 namespace Math {
8 
21 template <class T>
22 bool LinearlyDependent_Robust(const VectorTemplate<T>& a, const VectorTemplate<T>& b, T& c, bool& cb, T eps = Epsilon);
23 
30 template <class T>
31 bool LinearlyDependent_Robust(const MatrixTemplate<T>& A, VectorTemplate<T>& c, T eps = Epsilon);
32 
33 
34 } //namespace Math
35 
36 #endif
bool LinearlyDependent_Robust(const VectorTemplate< T > &a, const VectorTemplate< T > &b, T &c, bool &cb, T eps)
Robust determination of linear dependence.
Definition: LinearlyDependent.cpp:6
Contains all definitions in the Math package.
Definition: WorkspaceBound.h:12