*** empty log message ***

This commit is contained in:
jiri
2006-10-21 20:14:13 +00:00
parent 5633366c1f
commit d7be38877c
2 changed files with 19 additions and 0 deletions

1
mat.h
View File

@@ -92,6 +92,7 @@ public:
const NRMat transpose(bool conj=false) const;
const NRMat conjugate() const;
const NRMat submatrix(const int fromrow, const int torow, const int fromcol, const int tocol) const; //there is also independent less efficient routine for generally indexed submatrix
void storesubmatrix(const int fromrow, const int fromcol, const NRMat &rhs); //overwrite a block with external matrix
void gemm(const T &beta, const NRMat &a, const char transa, const NRMat &b,
const char transb, const T &alpha);//this = alpha*op( A )*op( B ) + beta*this
void fprintf(FILE *f, const char *format, const int modulo) const;