00001 #ifndef TOEPLITZ_H_ 00002 #define TOEPLITZ_H_ 00003 00004 //! Solves the Toeplitz System Rx = y R,y are input, x is output 00005 void SolveToeplitz(ublas::vector<double> &R,ublas::vector<double> &x, const ublas::vector<double> &y); 00006 #endif /*TOEPLITZ_H_*/
1.5.5