Class MultiplyVectorMatrixRule

All Implemented Interfaces:
RewriteRuleI, JepComponent, Serializable

public class MultiplyVectorMatrixRule extends AbstractVectorMatrixRule
A rule which expands multiplication of vectors and matrices. [u,v] * [[a,b],[c,d]] -> [u*a+v*c,u*b+v*d] [[a,b],[c,d]] * [u,v] -> [a*u+b*v,c*u+d*v] [[a,b],[c,d]] * [[p,q],[r,s]] -> [[a*p+b*r,a*q+b*s],[c*p+d*r,c*q+d*s]]
Since:
Jep 4.1 extensions 2.2
See Also: