00001 #ifndef _MATRIX_OPS_HH_ 00002 #define _MATRIX_OPS_HH_ 00003 00004 // This header declares non-friend matrix operations, ie, matrix operations 00005 // that just use the public interface to the matrix class. 00006 00007 #include <vector> 00008 #include "matrix.hh" 00009 00010 vector<Matrix> num2vec(const Matrix& a, int dim); 00011 void rpower(Matrix&, const Matrix&, int); 00012 00013 #endif