Skip to content
Snippets Groups Projects
Commit 28e22d6c authored by Martin Nolte's avatar Martin Nolte
Browse files

also add method mtv to FieldMatrix< K, 1 >

[[Imported from SVN: r5683]]
parent 32510cd3
No related branches found
No related tags found
No related merge requests found
......@@ -1098,6 +1098,12 @@ namespace Dune
y.p = a[0] * x.p;
}
//! y = A^T x
void mtv ( const FieldVector< K, 1 > &x, FieldVector< K, 1 > &y ) const
{
y.p = a[ 0 ] * x.p;
}
//! y += A x
void umv (const FieldVector<K,1>& x, FieldVector<K,1>& y) const
{
......
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