You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I wonder if it's possible to perform this operation:
w = alpha * matrix * v;
where matrix is of type ARdsNonSymMatrix, v and w are vectors, and alpha is a double?
There is matrix.MultMv, which does exactly that but without alpha multiplication. There's also a gemv function (it is used internally in matrix.MultMv) which could do that but the problem is A member is protected in the ARdsNonSymMatrix class.
Thank you!
The text was updated successfully, but these errors were encountered:
Hi, I wonder if it's possible to perform this operation:
where
matrix
is of typeARdsNonSymMatrix
,v
andw
are vectors, andalpha
is a double?There is
matrix.MultMv
, which does exactly that but withoutalpha
multiplication. There's also agemv
function (it is used internally inmatrix.MultMv
) which could do that but the problem isA
member is protected in theARdsNonSymMatrix
class.Thank you!
The text was updated successfully, but these errors were encountered: