Back to Eigenvalue Solvers (ARPACK)
ar.operators.mulMatvec
Create a product operator: y = A * B * x
Syntax
ar.operators.mulMatvec(A, B)
Description
Create a product operator: y = A * B * x Computes the composition of two operators. Note: this computes B first, then A, matching mathematical notation A*B*x = A*(B*x).
Parameters
| Name | Description |
|---|---|
| A | - Outer operator (applied second) |
| B | - Inner operator (applied first) |
Returns
MatVecFunction