Package com.singularsys.extensions.rewrite.matrix
package com.singularsys.extensions.rewrite.matrix
Rules for expanding vector and matrix operations like vector addition
[a,b]+[c,d] -> [a+c,b+d].
Rules are provided for expanding addition, subtraction, scalar multiplication, dot product and cross product.
An abstract base class AbstractVectorMatrixRule allows easy creation of new rules.- Since:
- Jep 4.1 extensions 2.2
-
ClassesClassDescriptionBase class for rules which operate on vectors and matrices.A rule which expands addition of vectors and matrices.A rule which expands the cross product of two 3D vectors.A rule which expands the dot product of two vectors.A rule which expands multiplication of vectors and matrices.A rule which expands division of vectors and matrices by scalers.A rule which expands multiplication of vectors and matrices by scalers.A rule which expands subtraction of vectors and matrices.