*** empty log message ***
This commit is contained in:
parent
2af0920423
commit
10c0143fc4
50
mat.cc
50
mat.cc
@ -34,24 +34,6 @@ NRMat<T> & NRMat<T>::operator=(const T &a)
|
||||
|
||||
|
||||
|
||||
//get diagonal; for compatibility with large matrices do not return newly created object
|
||||
template <typename T>
|
||||
void NRMat<T>::diagonalof(NRVec<T> &r) const
|
||||
{
|
||||
#ifdef DEBUG
|
||||
if (nn != mm) laerror("diagonalof() non-square matrix");
|
||||
if (r.size() != nn) laerror("diagonalof() incompatible vector");
|
||||
#endif
|
||||
|
||||
#ifdef MATPTR
|
||||
for (int i=0; i< nn; i++) r[i] = v[i][i];
|
||||
#else
|
||||
{int i,j; for (i=j=0; j< nn; ++j, i+=nn+1) r[j] = v[i];}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
// M += a
|
||||
template <typename T>
|
||||
@ -757,6 +739,38 @@ const complex<double> NRMat< complex<double> >::trace() const
|
||||
return sum;
|
||||
}
|
||||
|
||||
|
||||
|
||||
//get diagonal; for compatibility with large matrices do not return newly created object
|
||||
//for non-square get diagonal of A^TA, will be used as preconditioner
|
||||
void NRMat<double>::diagonalof(NRVec<double> &r) const
|
||||
{
|
||||
#ifdef DEBUG
|
||||
if (r.size() != nn) laerror("diagonalof() incompatible vector");
|
||||
#endif
|
||||
|
||||
if(nn==mm)
|
||||
{
|
||||
#ifdef MATPTR
|
||||
for (int i=0; i< nn; i++) r[i] = v[i][i];
|
||||
#else
|
||||
{int i,j; for (i=j=0; j< nn; ++j, i+=nn+1) r[j] = v[i];}
|
||||
#endif
|
||||
}
|
||||
else //non-square
|
||||
{
|
||||
for (int i=0; i< mm; i++)
|
||||
#ifdef MATPTR
|
||||
r[i] = cblas_ddot(nn,v[0]+i,mm,v[0]+i,mm);
|
||||
#else
|
||||
r[i] = cblas_ddot(nn,v+i,mm,v+i,mm);
|
||||
#endif
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
//// forced instantization in the corespoding object file
|
||||
#define INSTANTIZE(T) \
|
||||
|
19
sparsemat.cc
19
sparsemat.cc
@ -490,15 +490,22 @@ template <class T>
|
||||
void SparseMat<T>::diagonalof(NRVec<T> &r) const
|
||||
{
|
||||
#ifdef DEBUG
|
||||
if(nn!=mm) laerror("diagonalof() non-square sparse matrix");
|
||||
if((int)mm!=r.size()) laerror("incompatible vector size in diagonalof()");
|
||||
#endif
|
||||
matel<T> *l=list;
|
||||
r=(T)0;
|
||||
while(l)
|
||||
{
|
||||
if(l->row == l->col) r[l->row]+= l->elem;
|
||||
l= l->next;
|
||||
}
|
||||
if(nn==mm) //square
|
||||
while(l)
|
||||
{
|
||||
if(l->row == l->col) r[l->row]+= l->elem;
|
||||
l= l->next;
|
||||
}
|
||||
else //diagonal of A^TA, assuming it has been simplified (only one entry per position), will be used as preconditioner only anyway
|
||||
while(l)
|
||||
{
|
||||
r[l->col] += l->elem*l->elem *(l->col!=l->row && symmetric?2.:1.);
|
||||
l= l->next;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user