Create the VectorPlusTemplate following the sequencing of:
- Checking that
VectorExpression and Expression inputs are valid (with the Check() method) and that their dimensions match
- Decomposing the vectors into
[]ScalarExpression using the ToScalarExpressions method
- Compute the addition of each of the elements with the scalar expressions in the
Expression input with the appropriate element in the Expression
func VectorPlusTemplate(ve VectorExpression, expression Expression) Expression