Skip to content
Snippets Groups Projects
Commit dd525f68 authored by Bruno Seny's avatar Bruno Seny
Browse files

new add+scale function

parent 097c6c16
No related branches found
No related tags found
No related merge requests found
......@@ -181,6 +181,14 @@ class fullMatrix
for(int j = 0; j < size2(); j++)
(*this)(i, j) += m(i, j);
}
inline void add(const fullMatrix<scalar> &m, const double &a)
{
for(int i = 0; i < size1(); i++)
for(int j = 0; j < size2(); j++)
(*this)(i, j) += a*m(i, j);
}
void mult(const fullVector<scalar> &x, fullVector<scalar> &y)
#if !defined(HAVE_BLAS)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment